Struct sep2_common::packages::metering_mirror::MirrorUsagePointList
source · pub struct MirrorUsagePointList {
pub mirror_usage_point: Vec<MirrorUsagePoint>,
pub poll_rate: Option<Uint32>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
metering_mirror
only.Fields§
§mirror_usage_point: Vec<MirrorUsagePoint>
§poll_rate: Option<Uint32>
The default polling rate for this function set (this resource and all resources below), in seconds. If not specified, a default of 900 seconds (15 minutes) is used. It is RECOMMENDED a client poll the resources of this function set every pollRate seconds.
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 MirrorUsagePointList
impl Clone for MirrorUsagePointList
source§fn clone(&self) -> MirrorUsagePointList
fn clone(&self) -> MirrorUsagePointList
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 MirrorUsagePointList
impl Debug for MirrorUsagePointList
source§impl Default for MirrorUsagePointList
impl Default for MirrorUsagePointList
source§fn default() -> MirrorUsagePointList
fn default() -> MirrorUsagePointList
Returns the “default value” for a type. Read more
source§impl PartialEq<MirrorUsagePointList> for MirrorUsagePointList
impl PartialEq<MirrorUsagePointList> for MirrorUsagePointList
source§fn eq(&self, other: &MirrorUsagePointList) -> bool
fn eq(&self, other: &MirrorUsagePointList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for MirrorUsagePointList
impl SEList for MirrorUsagePointList
type Inner = MirrorUsagePoint
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 MirrorUsagePointList
impl SEResource for MirrorUsagePointList
source§impl YaDeserialize for MirrorUsagePointList
impl YaDeserialize for MirrorUsagePointList
source§impl YaSerialize for MirrorUsagePointList
impl YaSerialize for MirrorUsagePointList
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 MirrorUsagePointList
impl StructuralEq for MirrorUsagePointList
impl StructuralPartialEq for MirrorUsagePointList
Auto Trait Implementations§
impl RefUnwindSafe for MirrorUsagePointList
impl Send for MirrorUsagePointList
impl Sync for MirrorUsagePointList
impl Unpin for MirrorUsagePointList
impl UnwindSafe for MirrorUsagePointList
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