pub struct CollectionRow {
pub collection_name: String,
pub concept_label: String,
pub parent_label: Option<String>,
pub sort_order: Option<i32>,
}Expand description
Parsed row from collections.csv
Fields§
§collection_name: String§concept_label: String§parent_label: Option<String>§sort_order: Option<i32>Trait Implementations§
Source§impl Clone for CollectionRow
impl Clone for CollectionRow
Source§fn clone(&self) -> CollectionRow
fn clone(&self) -> CollectionRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionRow
impl Debug for CollectionRow
Source§impl<'de> Deserialize<'de> for CollectionRow
impl<'de> Deserialize<'de> for CollectionRow
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 CollectionRow
impl RefUnwindSafe for CollectionRow
impl Send for CollectionRow
impl Sync for CollectionRow
impl Unpin for CollectionRow
impl UnsafeUnpin for CollectionRow
impl UnwindSafe for CollectionRow
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