pub struct ActiveVmInfo {
pub id: u64,
pub name: String,
pub avatar: Option<String>,
pub expires_at: Option<String>,
pub vm_type: Option<String>,
pub lab_server: Option<String>,
}Fields§
§id: u64§name: String§avatar: Option<String>§expires_at: Option<String>§vm_type: Option<String>§lab_server: Option<String>Trait Implementations§
Source§impl Debug for ActiveVmInfo
impl Debug for ActiveVmInfo
Source§impl<'de> Deserialize<'de> for ActiveVmInfo
impl<'de> Deserialize<'de> for ActiveVmInfo
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 ActiveVmInfo
impl RefUnwindSafe for ActiveVmInfo
impl Send for ActiveVmInfo
impl Sync for ActiveVmInfo
impl Unpin for ActiveVmInfo
impl UnsafeUnpin for ActiveVmInfo
impl UnwindSafe for ActiveVmInfo
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