pub struct AssociatedItem<Cont, Item>(pub Cont, pub Item);Expand description
An item attached to an associated container, via “::”.
The output will look like Cont::Item.
Tuple Fields§
§0: Cont§1: ItemTrait Implementations§
Auto Trait Implementations§
impl<Cont, Item> Freeze for AssociatedItem<Cont, Item>
impl<Cont, Item> RefUnwindSafe for AssociatedItem<Cont, Item>where
    Cont: RefUnwindSafe,
    Item: RefUnwindSafe,
impl<Cont, Item> Send for AssociatedItem<Cont, Item>
impl<Cont, Item> Sync for AssociatedItem<Cont, Item>
impl<Cont, Item> Unpin for AssociatedItem<Cont, Item>
impl<Cont, Item> UnwindSafe for AssociatedItem<Cont, Item>where
    Cont: UnwindSafe,
    Item: 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