pub struct GetProperties<'graph, G> { /* private fields */ }Implementations§
Source§impl<'graph, G> GetProperties<'graph, G>
impl<'graph, G> GetProperties<'graph, G>
Trait Implementations§
Source§impl<'graph, G: GraphViewOps<'graph>> ArrowNodeOp for GetProperties<'graph, G>
impl<'graph, G: GraphViewOps<'graph>> ArrowNodeOp for GetProperties<'graph, G>
type ArrowOutput = HashMap<ArcStr, Option<Prop>>
fn arrow_apply(&self, storage: &GraphStorage, node: VID) -> Self::ArrowOutput
Source§impl<'graph, G: Clone> Clone for GetProperties<'graph, G>
impl<'graph, G: Clone> Clone for GetProperties<'graph, G>
Source§fn clone(&self) -> GetProperties<'graph, G>
fn clone(&self) -> GetProperties<'graph, G>
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<'graph, G: Debug> Debug for GetProperties<'graph, G>
impl<'graph, G: Debug> Debug for GetProperties<'graph, G>
Source§impl<'graph, G: GraphViewOps<'graph>> NodeOp for GetProperties<'graph, G>
impl<'graph, G: GraphViewOps<'graph>> NodeOp for GetProperties<'graph, G>
Auto Trait Implementations§
impl<'graph, G> Freeze for GetProperties<'graph, G>where
G: Freeze,
impl<'graph, G> RefUnwindSafe for GetProperties<'graph, G>where
G: RefUnwindSafe,
impl<'graph, G> Send for GetProperties<'graph, G>where
G: Send,
impl<'graph, G> Sync for GetProperties<'graph, G>where
G: Sync,
impl<'graph, G> Unpin for GetProperties<'graph, G>where
G: Unpin,
impl<'graph, G> UnsafeUnpin for GetProperties<'graph, G>where
G: UnsafeUnpin,
impl<'graph, G> UnwindSafe for GetProperties<'graph, G>where
G: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoArrowNodeOp for Twhere
T: NodeOp,
impl<T> IntoArrowNodeOp for Twhere
T: NodeOp,
fn into_arrow_node_op<A: InputNodeStateValue<Self::Output>>( self, ) -> ArrowMap<Self, A>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more