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