pub struct GetContextPathResult {
pub path_bundle: KmpBundle,
pub rendered: RenderedContext,
pub served_at: SystemTime,
pub timing: Option<QueryTimingBreakdown>,
/* private fields */
}Fields§
§path_bundle: KmpBundle§rendered: RenderedContext§served_at: SystemTime§timing: Option<QueryTimingBreakdown>Implementations§
Source§impl GetContextPathResult
impl GetContextPathResult
Sourcepub fn path_relationships(&self) -> Option<Vec<&BundleRelationship>>
pub fn path_relationships(&self) -> Option<Vec<&BundleRelationship>>
The exact directed proof path, in hop order. None means the reader
explored the graph but never reached the requested target.
pub fn root_node_id(&self) -> &str
pub fn target_node_id(&self) -> &str
Trait Implementations§
Source§impl Clone for GetContextPathResult
impl Clone for GetContextPathResult
Source§fn clone(&self) -> GetContextPathResult
fn clone(&self) -> GetContextPathResult
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 GetContextPathResult
impl Debug for GetContextPathResult
Source§impl PartialEq for GetContextPathResult
impl PartialEq for GetContextPathResult
impl StructuralPartialEq for GetContextPathResult
Auto Trait Implementations§
impl Freeze for GetContextPathResult
impl RefUnwindSafe for GetContextPathResult
impl Send for GetContextPathResult
impl Sync for GetContextPathResult
impl Unpin for GetContextPathResult
impl UnsafeUnpin for GetContextPathResult
impl UnwindSafe for GetContextPathResult
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