Struct sep2_common::packages::billing::HistoricalReadingList
source · pub struct HistoricalReadingList {
pub historical_reading: Vec<HistoricalReading>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
billing
only.Fields§
§historical_reading: Vec<HistoricalReading>
§all: Uint32
The number specifying “all” of the items in the list. Required on a response to a GET, ignored otherwise.
results: Uint32
Indicates the number of items in this page of results.
href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for HistoricalReadingList
impl Clone for HistoricalReadingList
source§fn clone(&self) -> HistoricalReadingList
fn clone(&self) -> HistoricalReadingList
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HistoricalReadingList
impl Debug for HistoricalReadingList
source§impl Default for HistoricalReadingList
impl Default for HistoricalReadingList
source§fn default() -> HistoricalReadingList
fn default() -> HistoricalReadingList
Returns the “default value” for a type. Read more
source§impl PartialEq<HistoricalReadingList> for HistoricalReadingList
impl PartialEq<HistoricalReadingList> for HistoricalReadingList
source§fn eq(&self, other: &HistoricalReadingList) -> bool
fn eq(&self, other: &HistoricalReadingList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for HistoricalReadingList
impl SEList for HistoricalReadingList
type Inner = HistoricalReading
fn all(&self) -> Uint32
fn all_mut(&mut self) -> &mut Uint32
fn results(&self) -> Uint32
fn results_mut(&mut self) -> &mut Uint32
fn list_as_slice(&self) -> &[Self::Inner]
fn list_mut(&mut self) -> &mut Vec<Self::Inner>
source§impl SEResource for HistoricalReadingList
impl SEResource for HistoricalReadingList
source§impl YaDeserialize for HistoricalReadingList
impl YaDeserialize for HistoricalReadingList
source§impl YaSerialize for HistoricalReadingList
impl YaSerialize for HistoricalReadingList
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for HistoricalReadingList
impl StructuralEq for HistoricalReadingList
impl StructuralPartialEq for HistoricalReadingList
Auto Trait Implementations§
impl RefUnwindSafe for HistoricalReadingList
impl Send for HistoricalReadingList
impl Sync for HistoricalReadingList
impl Unpin for HistoricalReadingList
impl UnwindSafe for HistoricalReadingList
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more