pub struct NetworkList {
pub networks: Option<Vec<NetworkView>>,
}Fields§
§networks: Option<Vec<NetworkView>>Networks holds the org’s overlay network, or is empty when the org has no edge-routers on the fabric (no nodes → no network, never a fabricated one).
Implementations§
Source§impl NetworkList
impl NetworkList
pub fn new() -> NetworkList
Trait Implementations§
Source§impl Clone for NetworkList
impl Clone for NetworkList
Source§fn clone(&self) -> NetworkList
fn clone(&self) -> NetworkList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NetworkList
impl Debug for NetworkList
Source§impl Default for NetworkList
impl Default for NetworkList
Source§fn default() -> NetworkList
fn default() -> NetworkList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkList
impl<'de> Deserialize<'de> for NetworkList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NetworkList
impl PartialEq for NetworkList
Source§impl Serialize for NetworkList
impl Serialize for NetworkList
impl StructuralPartialEq for NetworkList
Auto Trait Implementations§
impl Freeze for NetworkList
impl RefUnwindSafe for NetworkList
impl Send for NetworkList
impl Sync for NetworkList
impl Unpin for NetworkList
impl UnsafeUnpin for NetworkList
impl UnwindSafe for NetworkList
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