pub struct MachineList {
pub machines: Option<Vec<MachineView>>,
}Fields§
§machines: Option<Vec<MachineView>>Machines is every machine the org has: Visor-provisioned and BYO together.
Implementations§
Source§impl MachineList
impl MachineList
pub fn new() -> MachineList
Trait Implementations§
Source§impl Clone for MachineList
impl Clone for MachineList
Source§fn clone(&self) -> MachineList
fn clone(&self) -> MachineList
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 MachineList
impl Debug for MachineList
Source§impl Default for MachineList
impl Default for MachineList
Source§fn default() -> MachineList
fn default() -> MachineList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MachineList
impl<'de> Deserialize<'de> for MachineList
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 MachineList
impl PartialEq for MachineList
Source§impl Serialize for MachineList
impl Serialize for MachineList
impl StructuralPartialEq for MachineList
Auto Trait Implementations§
impl Freeze for MachineList
impl RefUnwindSafe for MachineList
impl Send for MachineList
impl Sync for MachineList
impl Unpin for MachineList
impl UnsafeUnpin for MachineList
impl UnwindSafe for MachineList
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