pub struct ChainLaunch<L0: Layout + ViewLayoutLaunchArg, L1: Layout<SourceCoordinates = L0::Coordinates> + ViewLayoutLaunchArg, R: Runtime> { /* private fields */ }Implementations§
Source§impl<L0: Layout + ViewLayoutLaunchArg, L1: Layout<SourceCoordinates = L0::Coordinates> + ViewLayoutLaunchArg, R: Runtime> ChainLaunch<L0, L1, R>
impl<L0: Layout + ViewLayoutLaunchArg, L1: Layout<SourceCoordinates = L0::Coordinates> + ViewLayoutLaunchArg, R: Runtime> ChainLaunch<L0, L1, R>
pub fn new(l0: L0::RuntimeArg<R>, l1: L1::RuntimeArg<R>) -> Self
Auto Trait Implementations§
impl<L0, L1, R> Freeze for ChainLaunch<L0, L1, R>where
<L0 as ViewLayoutLaunchArg>::RuntimeArg<R>: Freeze,
<L1 as ViewLayoutLaunchArg>::RuntimeArg<R>: Freeze,
impl<L0, L1, R> RefUnwindSafe for ChainLaunch<L0, L1, R>where
<L0 as ViewLayoutLaunchArg>::RuntimeArg<R>: RefUnwindSafe,
<L1 as ViewLayoutLaunchArg>::RuntimeArg<R>: RefUnwindSafe,
R: RefUnwindSafe,
impl<L0, L1, R> Send for ChainLaunch<L0, L1, R>
impl<L0, L1, R> Sync for ChainLaunch<L0, L1, R>
impl<L0, L1, R> Unpin for ChainLaunch<L0, L1, R>where
<L0 as ViewLayoutLaunchArg>::RuntimeArg<R>: Unpin,
<L1 as ViewLayoutLaunchArg>::RuntimeArg<R>: Unpin,
R: Unpin,
impl<L0, L1, R> UnsafeUnpin for ChainLaunch<L0, L1, R>where
<L0 as ViewLayoutLaunchArg>::RuntimeArg<R>: UnsafeUnpin,
<L1 as ViewLayoutLaunchArg>::RuntimeArg<R>: UnsafeUnpin,
impl<L0, L1, R> UnwindSafe for ChainLaunch<L0, L1, R>where
<L0 as ViewLayoutLaunchArg>::RuntimeArg<R>: UnwindSafe,
<L1 as ViewLayoutLaunchArg>::RuntimeArg<R>: UnwindSafe,
R: 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more