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