pub struct DelegateEdgeProp<G: WithEdgeProp<T>, T>(/* private fields */);Expand description
An edge property that delegates all operations to a wrapped property.
Trait Implementations§
Source§impl<G, D, T> EdgePropMutNew<G, T> for DelegateEdgeProp<D, T>
impl<G, D, T> EdgePropMutNew<G, T> for DelegateEdgeProp<D, T>
Source§impl<G: WithEdgeProp<T>, T> Index<<G as WithEdge>::Edge> for DelegateEdgeProp<G, T>
impl<G: WithEdgeProp<T>, T> Index<<G as WithEdge>::Edge> for DelegateEdgeProp<G, T>
Auto Trait Implementations§
impl<G, T> Freeze for DelegateEdgeProp<G, T>
impl<G, T> RefUnwindSafe for DelegateEdgeProp<G, T>
impl<G, T> Send for DelegateEdgeProp<G, T>
impl<G, T> Sync for DelegateEdgeProp<G, T>
impl<G, T> Unpin for DelegateEdgeProp<G, T>
impl<G, T> UnwindSafe for DelegateEdgeProp<G, T>
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<P, Idx> PropIndexMut<Idx> for Pwhere
P: IndexMut<Idx>,
impl<P, Idx> PropIndexMut<Idx> for Pwhere
P: IndexMut<Idx>,
Source§fn set_values_from<P, I>(&mut self, iter: I, source: &P)
fn set_values_from<P, I>(&mut self, iter: I, source: &P)
Set the value associated with each key produced by
iter to the value associated with the
key in the property source.Source§fn set_values<I>(&mut self, iter: I, value: Self::Output)
fn set_values<I>(&mut self, iter: I, value: Self::Output)
Set the value associated with keys produced by
iter to value.