pub struct TaxonomyEntry {
pub tag: Option<String>,
pub expanded: Option<String>,
pub description: Option<String>,
pub exclusive_predicate: Option<bool>,
pub existing_tag: Option<bool>,
}
Fields§
§tag: Option<String>
§expanded: Option<String>
§description: Option<String>
§exclusive_predicate: Option<bool>
§existing_tag: Option<bool>
Implementations§
Source§impl TaxonomyEntry
impl TaxonomyEntry
pub fn new() -> TaxonomyEntry
Trait Implementations§
Source§impl Clone for TaxonomyEntry
impl Clone for TaxonomyEntry
Source§fn clone(&self) -> TaxonomyEntry
fn clone(&self) -> TaxonomyEntry
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 TaxonomyEntry
impl Debug for TaxonomyEntry
Source§impl Default for TaxonomyEntry
impl Default for TaxonomyEntry
Source§fn default() -> TaxonomyEntry
fn default() -> TaxonomyEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaxonomyEntry
impl<'de> Deserialize<'de> for TaxonomyEntry
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
Source§impl PartialEq for TaxonomyEntry
impl PartialEq for TaxonomyEntry
Source§impl Serialize for TaxonomyEntry
impl Serialize for TaxonomyEntry
impl StructuralPartialEq for TaxonomyEntry
Auto Trait Implementations§
impl Freeze for TaxonomyEntry
impl RefUnwindSafe for TaxonomyEntry
impl Send for TaxonomyEntry
impl Sync for TaxonomyEntry
impl Unpin for TaxonomyEntry
impl UnwindSafe for TaxonomyEntry
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