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