pub struct VertexProperty {
pub id: Uuid,
pub value: Json,
}
Expand description
Represents a vertex property.
Fields§
§id: Uuid
The id of the vertex.
value: Json
The property value.
Implementations§
Trait Implementations§
Source§impl Clone for VertexProperty
impl Clone for VertexProperty
Source§fn clone(&self) -> VertexProperty
fn clone(&self) -> VertexProperty
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 VertexProperty
impl Debug for VertexProperty
Source§impl PartialEq for VertexProperty
impl PartialEq for VertexProperty
impl StructuralPartialEq for VertexProperty
Auto Trait Implementations§
impl Freeze for VertexProperty
impl RefUnwindSafe for VertexProperty
impl Send for VertexProperty
impl Sync for VertexProperty
impl Unpin for VertexProperty
impl UnwindSafe for VertexProperty
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