pub struct ClassificationNode {
pub id: String,
pub name: String,
pub rank: Option<Rank>,
pub label: Option<String>,
}Fields§
§id: String§name: String§rank: Option<Rank>§label: Option<String>Trait Implementations§
Source§impl Clone for ClassificationNode
impl Clone for ClassificationNode
Source§fn clone(&self) -> ClassificationNode
fn clone(&self) -> ClassificationNode
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 ClassificationNode
impl Debug for ClassificationNode
Source§impl<'de> Deserialize<'de> for ClassificationNode
impl<'de> Deserialize<'de> for ClassificationNode
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 ClassificationNode
impl RefUnwindSafe for ClassificationNode
impl Send for ClassificationNode
impl Sync for ClassificationNode
impl Unpin for ClassificationNode
impl UnwindSafe for ClassificationNode
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