pub struct LocalEnvironment {
pub type_: String,
pub skills: Option<Vec<LocalSkill>>,
}Fields§
§type_: StringUse a local computer environment.
skills: Option<Vec<LocalSkill>>An optional list of skills.
Trait Implementations§
Source§impl Clone for LocalEnvironment
impl Clone for LocalEnvironment
Source§fn clone(&self) -> LocalEnvironment
fn clone(&self) -> LocalEnvironment
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 LocalEnvironment
impl Debug for LocalEnvironment
Source§impl<'de> Deserialize<'de> for LocalEnvironment
impl<'de> Deserialize<'de> for LocalEnvironment
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 LocalEnvironment
impl RefUnwindSafe for LocalEnvironment
impl Send for LocalEnvironment
impl Sync for LocalEnvironment
impl Unpin for LocalEnvironment
impl UnsafeUnpin for LocalEnvironment
impl UnwindSafe for LocalEnvironment
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