pub struct NestedVirtualChassis {
pub id: Option<Uuid>,
pub object_type: Option<String>,
pub url: Option<String>,
}Expand description
NestedVirtualChassis : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Option<Uuid>§object_type: Option<String>§url: Option<String>Implementations§
Source§impl NestedVirtualChassis
impl NestedVirtualChassis
Sourcepub fn new() -> NestedVirtualChassis
pub fn new() -> NestedVirtualChassis
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for NestedVirtualChassis
impl Clone for NestedVirtualChassis
Source§fn clone(&self) -> NestedVirtualChassis
fn clone(&self) -> NestedVirtualChassis
Returns a duplicate 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 NestedVirtualChassis
impl Debug for NestedVirtualChassis
Source§impl Default for NestedVirtualChassis
impl Default for NestedVirtualChassis
Source§fn default() -> NestedVirtualChassis
fn default() -> NestedVirtualChassis
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NestedVirtualChassis
impl<'de> Deserialize<'de> for NestedVirtualChassis
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 NestedVirtualChassis
impl PartialEq for NestedVirtualChassis
Source§impl Serialize for NestedVirtualChassis
impl Serialize for NestedVirtualChassis
impl StructuralPartialEq for NestedVirtualChassis
Auto Trait Implementations§
impl Freeze for NestedVirtualChassis
impl RefUnwindSafe for NestedVirtualChassis
impl Send for NestedVirtualChassis
impl Sync for NestedVirtualChassis
impl Unpin for NestedVirtualChassis
impl UnsafeUnpin for NestedVirtualChassis
impl UnwindSafe for NestedVirtualChassis
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