pub struct GraphProviderResult {
pub graph_kind: String,
pub root_iris: Vec<String>,
pub result: Option<Value>,
}Expand description
Thin graph provider — optional graph_kind + IRI seeds / overlay payload.
Fields§
§graph_kind: String§root_iris: Vec<String>§result: Option<Value>Trait Implementations§
Source§impl Clone for GraphProviderResult
impl Clone for GraphProviderResult
Source§fn clone(&self) -> GraphProviderResult
fn clone(&self) -> GraphProviderResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphProviderResult
impl Debug for GraphProviderResult
Source§impl Default for GraphProviderResult
impl Default for GraphProviderResult
Source§fn default() -> GraphProviderResult
fn default() -> GraphProviderResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphProviderResult
impl<'de> Deserialize<'de> for GraphProviderResult
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 GraphProviderResult
impl RefUnwindSafe for GraphProviderResult
impl Send for GraphProviderResult
impl Sync for GraphProviderResult
impl Unpin for GraphProviderResult
impl UnsafeUnpin for GraphProviderResult
impl UnwindSafe for GraphProviderResult
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