Trait TupleRefMut

Source
pub trait TupleRefMut<'a, Tpl> { }
Available on crate feature ref-mut only.
Expand description

A reference to a mutable tuple that is usable with ref_mut_tuple().

See also: ref_mut_tuple(), RefMutTuple.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a> TupleRefMut<'a, ()> for &'a mut ()

Source§

impl<'a, I1> TupleRefMut<'a, (I1,)> for &'a mut (I1,)

Source§

impl<'a, I1, I2> TupleRefMut<'a, (I1, I2)> for &'a mut (I1, I2)

Source§

impl<'a, I1, I2, I3> TupleRefMut<'a, (I1, I2, I3)> for &'a mut (I1, I2, I3)

Source§

impl<'a, I1, I2, I3, I4> TupleRefMut<'a, (I1, I2, I3, I4)> for &'a mut (I1, I2, I3, I4)

Source§

impl<'a, I1, I2, I3, I4, I5> TupleRefMut<'a, (I1, I2, I3, I4, I5)> for &'a mut (I1, I2, I3, I4, I5)

Source§

impl<'a, I1, I2, I3, I4, I5, I6> TupleRefMut<'a, (I1, I2, I3, I4, I5, I6)> for &'a mut (I1, I2, I3, I4, I5, I6)

Source§

impl<'a, I1, I2, I3, I4, I5, I6, I7> TupleRefMut<'a, (I1, I2, I3, I4, I5, I6, I7)> for &'a mut (I1, I2, I3, I4, I5, I6, I7)

Source§

impl<'a, I1, I2, I3, I4, I5, I6, I7, I8> TupleRefMut<'a, (I1, I2, I3, I4, I5, I6, I7, I8)> for &'a mut (I1, I2, I3, I4, I5, I6, I7, I8)

Implementors§