pub struct NodeCentricProjectionReader<G, D> { /* private fields */ }Implementations§
Source§impl<G, D> NodeCentricProjectionReader<G, D>
impl<G, D> NodeCentricProjectionReader<G, D>
Source§impl<G, D> NodeCentricProjectionReader<G, D>
impl<G, D> NodeCentricProjectionReader<G, D>
pub async fn load_bundle( &self, root_node_id: &str, role: &str, generator_version: &str, ) -> Result<(Option<KmpBundle>, QueryTimingBreakdown), ApplicationError>
pub async fn load_bundle_with_depth( &self, root_node_id: &str, role: &str, generator_version: &str, depth: u32, ) -> Result<(Option<KmpBundle>, QueryTimingBreakdown), ApplicationError>
pub async fn load_bundles_for_roles( &self, root_node_id: &str, roles: &[String], generator_version: &str, depth: u32, ) -> Result<(Option<Vec<KmpBundle>>, QueryTimingBreakdown), ApplicationError>
pub async fn load_context_path_bundle_with_depth( &self, root_node_id: &str, target_node_id: &str, role: &str, generator_version: &str, subtree_depth: u32, ) -> Result<(Option<KmpBundle>, QueryTimingBreakdown), ApplicationError>
Trait Implementations§
Auto Trait Implementations§
impl<G, D> Freeze for NodeCentricProjectionReader<G, D>
impl<G, D> RefUnwindSafe for NodeCentricProjectionReader<G, D>where
G: RefUnwindSafe,
D: RefUnwindSafe,
impl<G, D> Send for NodeCentricProjectionReader<G, D>
impl<G, D> Sync for NodeCentricProjectionReader<G, D>
impl<G, D> Unpin for NodeCentricProjectionReader<G, D>
impl<G, D> UnsafeUnpin for NodeCentricProjectionReader<G, D>where
G: UnsafeUnpin,
D: UnsafeUnpin,
impl<G, D> UnwindSafe for NodeCentricProjectionReader<G, D>where
G: UnwindSafe,
D: UnwindSafe,
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