pub struct GraphGroup {
pub graph_member: GraphMember,
pub description: Option<String>,
}Expand description
Graph group entity
Fields§
§graph_member: GraphMember§description: Option<String>A short phrase to help human readers disambiguate groups with similar names
Implementations§
Source§impl GraphGroup
impl GraphGroup
Trait Implementations§
Source§impl Clone for GraphGroup
impl Clone for GraphGroup
Source§fn clone(&self) -> GraphGroup
fn clone(&self) -> GraphGroup
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 GraphGroup
impl Debug for GraphGroup
Source§impl Default for GraphGroup
impl Default for GraphGroup
Source§fn default() -> GraphGroup
fn default() -> GraphGroup
Returns the “default value” for a type. Read more
Source§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
Source§impl PartialEq for GraphGroup
impl PartialEq for GraphGroup
Source§impl Serialize for GraphGroup
impl Serialize for GraphGroup
impl StructuralPartialEq for GraphGroup
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