Struct sep2_common::packages::billing::BillingReadingSetList
source · pub struct BillingReadingSetList {
pub billing_reading_set: Vec<BillingReadingSet>,
pub all: Uint32,
pub results: Uint32,
pub subscribable: Option<SubscribableType>,
pub href: Option<String>,
}
Available on crate feature
billing
only.Fields§
§billing_reading_set: Vec<BillingReadingSet>
§all: Uint32
The number specifying “all” of the items in the list. Required on GET, ignored otherwise.
results: Uint32
Indicates the number of items in this page of results.
subscribable: Option<SubscribableType>
Indicates whether or not subscriptions are supported for this resource, and whether or not conditional (thresholds) are supported. If not specified, is “not subscribable” (0).
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 BillingReadingSetList
impl Clone for BillingReadingSetList
source§fn clone(&self) -> BillingReadingSetList
fn clone(&self) -> BillingReadingSetList
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 BillingReadingSetList
impl Debug for BillingReadingSetList
source§impl Default for BillingReadingSetList
impl Default for BillingReadingSetList
source§fn default() -> BillingReadingSetList
fn default() -> BillingReadingSetList
Returns the “default value” for a type. Read more
source§impl PartialEq<BillingReadingSetList> for BillingReadingSetList
impl PartialEq<BillingReadingSetList> for BillingReadingSetList
source§fn eq(&self, other: &BillingReadingSetList) -> bool
fn eq(&self, other: &BillingReadingSetList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for BillingReadingSetList
impl SEList for BillingReadingSetList
type Inner = BillingReadingSet
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 BillingReadingSetList
impl SEResource for BillingReadingSetList
source§impl SESubscribableResource for BillingReadingSetList
impl SESubscribableResource for BillingReadingSetList
fn subscribable(&self) -> Option<SubscribableType>
source§impl YaDeserialize for BillingReadingSetList
impl YaDeserialize for BillingReadingSetList
source§impl YaSerialize for BillingReadingSetList
impl YaSerialize for BillingReadingSetList
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 BillingReadingSetList
impl SESubscribableList for BillingReadingSetList
impl StructuralEq for BillingReadingSetList
impl StructuralPartialEq for BillingReadingSetList
Auto Trait Implementations§
impl RefUnwindSafe for BillingReadingSetList
impl Send for BillingReadingSetList
impl Sync for BillingReadingSetList
impl Unpin for BillingReadingSetList
impl UnwindSafe for BillingReadingSetList
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