pub struct EmcIdentityYaml {
pub name: String,
pub version: String,
pub authors: Vec<AuthorYaml>,
pub status: String,
pub description: String,
}Expand description
Identity section of EMC.
Fields§
§name: String§version: String§status: String§description: StringTrait Implementations§
Source§impl Clone for EmcIdentityYaml
impl Clone for EmcIdentityYaml
Source§fn clone(&self) -> EmcIdentityYaml
fn clone(&self) -> EmcIdentityYaml
Returns a duplicate of the value. Read more
1.0.0 · 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 EmcIdentityYaml
impl Debug for EmcIdentityYaml
Source§impl<'de> Deserialize<'de> for EmcIdentityYaml
impl<'de> Deserialize<'de> for EmcIdentityYaml
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 EmcIdentityYaml
impl RefUnwindSafe for EmcIdentityYaml
impl Send for EmcIdentityYaml
impl Sync for EmcIdentityYaml
impl Unpin for EmcIdentityYaml
impl UnsafeUnpin for EmcIdentityYaml
impl UnwindSafe for EmcIdentityYaml
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