pub struct NodeGraphStoreMiddlewareChain<A, B> {
pub first: A,
pub second: B,
}Fields§
§first: A§second: BImplementations§
Source§impl<A, B> NodeGraphStoreMiddlewareChain<A, B>
impl<A, B> NodeGraphStoreMiddlewareChain<A, B>
Trait Implementations§
Source§impl<A: Clone, B: Clone> Clone for NodeGraphStoreMiddlewareChain<A, B>
impl<A: Clone, B: Clone> Clone for NodeGraphStoreMiddlewareChain<A, B>
Source§fn clone(&self) -> NodeGraphStoreMiddlewareChain<A, B>
fn clone(&self) -> NodeGraphStoreMiddlewareChain<A, B>
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<A, B> NodeGraphStoreMiddleware for NodeGraphStoreMiddlewareChain<A, B>where
A: NodeGraphStoreMiddleware,
B: NodeGraphStoreMiddleware,
impl<A, B> NodeGraphStoreMiddleware for NodeGraphStoreMiddlewareChain<A, B>where
A: NodeGraphStoreMiddleware,
B: NodeGraphStoreMiddleware,
fn before_dispatch( &mut self, snapshot: NodeGraphStoreSnapshot<'_>, tx: &mut GraphTransaction, ) -> Result<(), ApplyPipelineError>
fn after_dispatch( &mut self, snapshot: NodeGraphStoreSnapshot<'_>, patch: &NodeGraphPatch, )
Auto Trait Implementations§
impl<A, B> Freeze for NodeGraphStoreMiddlewareChain<A, B>
impl<A, B> RefUnwindSafe for NodeGraphStoreMiddlewareChain<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for NodeGraphStoreMiddlewareChain<A, B>
impl<A, B> Sync for NodeGraphStoreMiddlewareChain<A, B>
impl<A, B> Unpin for NodeGraphStoreMiddlewareChain<A, B>
impl<A, B> UnsafeUnpin for NodeGraphStoreMiddlewareChain<A, B>where
A: UnsafeUnpin,
B: UnsafeUnpin,
impl<A, B> UnwindSafe for NodeGraphStoreMiddlewareChain<A, B>where
A: UnwindSafe,
B: 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