pub struct Chain<V> {
pub object: V,
}
Expand description
This piece marks the end of a chain.
Fields§
§object: V
The wrapped object.
Implementations§
Trait Implementations§
Source§impl<V> ChainElement for Chain<V>
impl<V> ChainElement for Chain<V>
impl<V: Copy> Copy for Chain<V>
Auto Trait Implementations§
impl<V> Freeze for Chain<V>where
V: Freeze,
impl<V> RefUnwindSafe for Chain<V>where
V: RefUnwindSafe,
impl<V> Send for Chain<V>where
V: Send,
impl<V> Sync for Chain<V>where
V: Sync,
impl<V> Unpin for Chain<V>where
V: Unpin,
impl<V> UnwindSafe for Chain<V>where
V: 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