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