pub struct DevEnvironment {
pub name: String,
pub suitability: CompatibilityLevel,
pub container_support: bool,
pub vm_support: bool,
pub recommended_config: String,
}
Fields§
§name: String
§suitability: CompatibilityLevel
§container_support: bool
§vm_support: bool
§recommended_config: String
Trait Implementations§
Source§impl Debug for DevEnvironment
impl Debug for DevEnvironment
Source§impl<'de> Deserialize<'de> for DevEnvironment
impl<'de> Deserialize<'de> for DevEnvironment
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 DevEnvironment
impl RefUnwindSafe for DevEnvironment
impl Send for DevEnvironment
impl Sync for DevEnvironment
impl Unpin for DevEnvironment
impl UnwindSafe for DevEnvironment
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