pub struct GraphGroup {
pub name: String,
pub nodes: Vec<String>,
pub metadata: Option<Map<String, Value>>,
}Fields§
§name: String§nodes: Vec<String>§metadata: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for GraphGroup
impl Clone for GraphGroup
Source§fn clone(&self) -> GraphGroup
fn clone(&self) -> GraphGroup
Returns a copy 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<'de> Deserialize<'de> for GraphGroup
impl<'de> Deserialize<'de> for GraphGroup
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 GraphGroup
impl RefUnwindSafe for GraphGroup
impl Send for GraphGroup
impl Sync for GraphGroup
impl Unpin for GraphGroup
impl UnwindSafe for GraphGroup
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