pub struct Machine {
pub id: String,
pub name: String,
pub state: MachineState,
pub region: String,
pub image_ref: ImageRef,
pub instance_id: String,
pub private_ip: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub config: MachineConfig,
pub events: Vec<MachineEvent>,
}Fields§
§id: String§name: String§state: MachineState§region: String§image_ref: ImageRef§instance_id: String§private_ip: String§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§config: MachineConfig§events: Vec<MachineEvent>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Machine
impl<'de> Deserialize<'de> for Machine
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
Auto Trait Implementations§
impl Freeze for Machine
impl RefUnwindSafe for Machine
impl Send for Machine
impl Sync for Machine
impl Unpin for Machine
impl UnsafeUnpin for Machine
impl UnwindSafe for Machine
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