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