pub struct GraphEntity {
pub id: i64,
pub kind: String,
pub name: String,
pub file_path: Option<String>,
pub data: Value,
}Fields§
§id: i64§kind: String§name: String§file_path: Option<String>§data: ValueTrait Implementations§
Source§impl Clone for GraphEntity
impl Clone for GraphEntity
Source§fn clone(&self) -> GraphEntity
fn clone(&self) -> GraphEntity
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 GraphEntity
impl Debug for GraphEntity
Source§impl<'de> Deserialize<'de> for GraphEntity
impl<'de> Deserialize<'de> for GraphEntity
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 GraphEntity
impl PartialEq for GraphEntity
Source§impl Serialize for GraphEntity
impl Serialize for GraphEntity
impl StructuralPartialEq for GraphEntity
Auto Trait Implementations§
impl Freeze for GraphEntity
impl RefUnwindSafe for GraphEntity
impl Send for GraphEntity
impl Sync for GraphEntity
impl Unpin for GraphEntity
impl UnwindSafe for GraphEntity
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