pub struct MirrorMeterReadingList {
pub mirror_meter_reading: Vec<MirrorMeterReading>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
metering_mirror
only.Fields§
§mirror_meter_reading: Vec<MirrorMeterReading>
§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 MirrorMeterReadingList
impl Clone for MirrorMeterReadingList
source§fn clone(&self) -> MirrorMeterReadingList
fn clone(&self) -> MirrorMeterReadingList
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 MirrorMeterReadingList
impl Debug for MirrorMeterReadingList
source§impl Default for MirrorMeterReadingList
impl Default for MirrorMeterReadingList
source§fn default() -> MirrorMeterReadingList
fn default() -> MirrorMeterReadingList
Returns the “default value” for a type. Read more
source§impl PartialEq<MirrorMeterReadingList> for MirrorMeterReadingList
impl PartialEq<MirrorMeterReadingList> for MirrorMeterReadingList
source§fn eq(&self, other: &MirrorMeterReadingList) -> bool
fn eq(&self, other: &MirrorMeterReadingList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for MirrorMeterReadingList
impl SEList for MirrorMeterReadingList
type Inner = MirrorMeterReading
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 MirrorMeterReadingList
impl SEResource for MirrorMeterReadingList
source§impl YaDeserialize for MirrorMeterReadingList
impl YaDeserialize for MirrorMeterReadingList
source§impl YaSerialize for MirrorMeterReadingList
impl YaSerialize for MirrorMeterReadingList
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 MirrorMeterReadingList
impl StructuralEq for MirrorMeterReadingList
impl StructuralPartialEq for MirrorMeterReadingList
Auto Trait Implementations§
impl RefUnwindSafe for MirrorMeterReadingList
impl Send for MirrorMeterReadingList
impl Sync for MirrorMeterReadingList
impl Unpin for MirrorMeterReadingList
impl UnwindSafe for MirrorMeterReadingList
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