pub struct GraphRow {
pub name: String,
pub ontology_class: Option<String>,
pub author: Option<String>,
pub description: Option<String>,
pub is_resource: Option<bool>,
}Expand description
Parsed row from graph.csv
Fields§
§name: String§ontology_class: Option<String>§description: Option<String>§is_resource: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphRow
impl<'de> Deserialize<'de> for GraphRow
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 GraphRow
impl RefUnwindSafe for GraphRow
impl Send for GraphRow
impl Sync for GraphRow
impl Unpin for GraphRow
impl UnsafeUnpin for GraphRow
impl UnwindSafe for GraphRow
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