pub struct ConceptData {
pub relationships: Vec<Relationship>,
}Expand description
Concept-specific frontmatter (ARCHITECTURE §2 — concept block).
Fields§
§relationships: Vec<Relationship>Optional typed relationships.
Trait Implementations§
Source§impl Clone for ConceptData
impl Clone for ConceptData
Source§fn clone(&self) -> ConceptData
fn clone(&self) -> ConceptData
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 ConceptData
impl Debug for ConceptData
Source§impl<'de> Deserialize<'de> for ConceptData
impl<'de> Deserialize<'de> for ConceptData
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 ConceptData
impl PartialEq for ConceptData
Source§fn eq(&self, other: &ConceptData) -> bool
fn eq(&self, other: &ConceptData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConceptData
impl Serialize for ConceptData
impl StructuralPartialEq for ConceptData
Auto Trait Implementations§
impl Freeze for ConceptData
impl RefUnwindSafe for ConceptData
impl Send for ConceptData
impl Sync for ConceptData
impl Unpin for ConceptData
impl UnsafeUnpin for ConceptData
impl UnwindSafe for ConceptData
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