pub struct RootDescription {
pub name: String,
pub characteristics: IndexMap<String, CharacteristicDescription>,
}Expand description
The description for the root of a brevdash repository.
Fields§
§name: StringThe human-readable name of the repository.
characteristics: IndexMap<String, CharacteristicDescription>The caracteristics available in the repository.
Trait Implementations§
Source§impl Clone for RootDescription
impl Clone for RootDescription
Source§fn clone(&self) -> RootDescription
fn clone(&self) -> RootDescription
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 RootDescription
impl Debug for RootDescription
Source§impl<'de> Deserialize<'de> for RootDescription
impl<'de> Deserialize<'de> for RootDescription
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 RootDescription
impl RefUnwindSafe for RootDescription
impl Send for RootDescription
impl Sync for RootDescription
impl Unpin for RootDescription
impl UnwindSafe for RootDescription
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