pub struct CoupledCampaign<T, R: CfdScalar, S, FC> { /* private fields */ }Expand description
Auto Trait Implementations§
impl<T, R, S, FC> Freeze for CoupledCampaign<T, R, S, FC>where
Vec<T>: Freeze,
CompressibleMarchConfig<R>: Freeze,
Vec<CompressibleMarchConfig<R>>: Freeze,
FC: Freeze,
PhantomData<fn() -> S>: Freeze,
impl<T, R, S, FC> RefUnwindSafe for CoupledCampaign<T, R, S, FC>where
Vec<T>: RefUnwindSafe,
CompressibleMarchConfig<R>: RefUnwindSafe,
Vec<CompressibleMarchConfig<R>>: RefUnwindSafe,
FC: RefUnwindSafe,
PhantomData<fn() -> S>: RefUnwindSafe,
impl<T, R, S, FC> Send for CoupledCampaign<T, R, S, FC>where
Vec<T>: Send,
CompressibleMarchConfig<R>: Send,
Vec<CompressibleMarchConfig<R>>: Send,
FC: Send,
PhantomData<fn() -> S>: Send,
impl<T, R, S, FC> Sync for CoupledCampaign<T, R, S, FC>where
Vec<T>: Sync,
CompressibleMarchConfig<R>: Sync,
Vec<CompressibleMarchConfig<R>>: Sync,
FC: Sync,
PhantomData<fn() -> S>: Sync,
impl<T, R, S, FC> Unpin for CoupledCampaign<T, R, S, FC>where
Vec<T>: Unpin,
CompressibleMarchConfig<R>: Unpin,
Vec<CompressibleMarchConfig<R>>: Unpin,
FC: Unpin,
PhantomData<fn() -> S>: Unpin,
impl<T, R, S, FC> UnsafeUnpin for CoupledCampaign<T, R, S, FC>where
Vec<T>: UnsafeUnpin,
CompressibleMarchConfig<R>: UnsafeUnpin,
Vec<CompressibleMarchConfig<R>>: UnsafeUnpin,
FC: UnsafeUnpin,
PhantomData<fn() -> S>: UnsafeUnpin,
impl<T, R, S, FC> UnwindSafe for CoupledCampaign<T, R, S, FC>where
Vec<T>: UnwindSafe,
CompressibleMarchConfig<R>: UnwindSafe,
Vec<CompressibleMarchConfig<R>>: UnwindSafe,
FC: UnwindSafe,
PhantomData<fn() -> S>: 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
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