pub struct ExpandedNode {
pub id: Option<String>,
pub types: Vec<String>,
pub properties: HashMap<String, Vec<Value>>,
}Expand description
An expanded JSON-LD node with full IRIs as keys.
Fields§
§id: Option<String>§types: Vec<String>§properties: HashMap<String, Vec<Value>>Trait Implementations§
Source§impl Clone for ExpandedNode
impl Clone for ExpandedNode
Source§fn clone(&self) -> ExpandedNode
fn clone(&self) -> ExpandedNode
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 ExpandedNode
impl Debug for ExpandedNode
Source§impl<'de> Deserialize<'de> for ExpandedNode
impl<'de> Deserialize<'de> for ExpandedNode
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 ExpandedNode
impl RefUnwindSafe for ExpandedNode
impl Send for ExpandedNode
impl Sync for ExpandedNode
impl Unpin for ExpandedNode
impl UnsafeUnpin for ExpandedNode
impl UnwindSafe for ExpandedNode
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