pub struct AnonTuple<Args>(pub Args);Expand description
An anonymous tuple type. This struct’s tuple value must be a sequence.
Renders as (A1, A2, A3, ...) where AX is part of the argument sequence.
Tuple Fields§
§0: ArgsImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<Args> Freeze for AnonTuple<Args>where
    Args: Freeze,
impl<Args> RefUnwindSafe for AnonTuple<Args>where
    Args: RefUnwindSafe,
impl<Args> Send for AnonTuple<Args>where
    Args: Send,
impl<Args> Sync for AnonTuple<Args>where
    Args: Sync,
impl<Args> Unpin for AnonTuple<Args>where
    Args: Unpin,
impl<Args> UnwindSafe for AnonTuple<Args>where
    Args: 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