pub struct FeaturesToml {
pub name: Option<String>,
pub owner: Option<String>,
pub description: Option<String>,
pub meta: HashMap<String, Value>,
}Fields§
§name: Option<String>§owner: Option<String>§description: Option<String>§meta: HashMap<String, Value>Trait Implementations§
Source§impl Clone for FeaturesToml
impl Clone for FeaturesToml
Source§fn clone(&self) -> FeaturesToml
fn clone(&self) -> FeaturesToml
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 FeaturesToml
impl Debug for FeaturesToml
Source§impl<'de> Deserialize<'de> for FeaturesToml
impl<'de> Deserialize<'de> for FeaturesToml
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 FeaturesToml
impl RefUnwindSafe for FeaturesToml
impl Send for FeaturesToml
impl Sync for FeaturesToml
impl Unpin for FeaturesToml
impl UnsafeUnpin for FeaturesToml
impl UnwindSafe for FeaturesToml
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