pub struct CombinedSeq<S1, S2>(pub S1, pub S2);Expand description
A combined writable sequence that consists of two other sequences
Tuple Fields§
§0: S1§1: S2Trait Implementations§
Source§impl<O, S1, S2> WritableSeq<O> for CombinedSeq<S1, S2>
impl<O, S1, S2> WritableSeq<O> for CombinedSeq<S1, S2>
Auto Trait Implementations§
impl<S1, S2> Freeze for CombinedSeq<S1, S2>
impl<S1, S2> RefUnwindSafe for CombinedSeq<S1, S2>where
S1: RefUnwindSafe,
S2: RefUnwindSafe,
impl<S1, S2> Send for CombinedSeq<S1, S2>
impl<S1, S2> Sync for CombinedSeq<S1, S2>
impl<S1, S2> Unpin for CombinedSeq<S1, S2>
impl<S1, S2> UnwindSafe for CombinedSeq<S1, S2>where
S1: UnwindSafe,
S2: 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