pub enum GraphAttributes {
Graph(Vec<Attribute>),
Node(Vec<Attribute>),
Edge(Vec<Attribute>),
}
Expand description
the component represents a set of attributes with prefix denoting a type in the language.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for GraphAttributes
impl Clone for GraphAttributes
Source§fn clone(&self) -> GraphAttributes
fn clone(&self) -> GraphAttributes
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 Debug for GraphAttributes
impl Debug for GraphAttributes
Source§impl From<GraphAttributes> for Stmt
impl From<GraphAttributes> for Stmt
Source§fn from(v: GraphAttributes) -> Self
fn from(v: GraphAttributes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GraphAttributes
impl PartialEq for GraphAttributes
impl StructuralPartialEq for GraphAttributes
Auto Trait Implementations§
impl Freeze for GraphAttributes
impl RefUnwindSafe for GraphAttributes
impl Send for GraphAttributes
impl Sync for GraphAttributes
impl Unpin for GraphAttributes
impl UnwindSafe for GraphAttributes
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