pub struct Taxonomy {
pub id: Option<String>,
pub namespace: Option<String>,
pub description: Option<String>,
pub version: Option<String>,
pub enabled: Option<bool>,
pub exclusive: Option<bool>,
pub required: Option<bool>,
}
Fields§
§id: Option<String>
§namespace: Option<String>
§description: Option<String>
§version: Option<String>
§enabled: Option<bool>
§exclusive: Option<bool>
§required: Option<bool>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Taxonomy
impl<'de> Deserialize<'de> for Taxonomy
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
impl StructuralPartialEq for Taxonomy
Auto Trait Implementations§
impl Freeze for Taxonomy
impl RefUnwindSafe for Taxonomy
impl Send for Taxonomy
impl Sync for Taxonomy
impl Unpin for Taxonomy
impl UnwindSafe for Taxonomy
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