pub struct Tuple<A>(pub Box<[A]>, pub bool);Expand description
Represents a comma-separated tuple of As in round brackets.
The bool indicates if there is a trailing comma.
Tuple Fields§
§0: Box<[A]>§1: boolTrait Implementations§
Auto Trait Implementations§
impl<A> Freeze for Tuple<A>
impl<A> RefUnwindSafe for Tuple<A>
impl<A> Send for Tuple<A>
impl<A> Sync for Tuple<A>
impl<A> Unpin for Tuple<A>
impl<A> UnsafeUnpin for Tuple<A>
impl<A> UnwindSafe for Tuple<A>
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