pub struct Seq<H, T> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<H, T, S, R, P, A, E> System for Seq<H, T>
impl<H, T, S, R, P, A, E> System for Seq<H, T>
type Source = S
type Resources = R
type Pool = P
type Args = A
type Error = E
Source§fn check_resources(&self) -> Result<Self::Resources, ResourceConflict>
fn check_resources(&self) -> Result<Self::Resources, ResourceConflict>
Check for any internal resource conficts and if there are none, return a
Resources that
represents the used resources. Read morefn run( &mut self, pool: &Self::Pool, source: &Self::Source, args: &Self::Args, ) -> Result<(), Self::Error>
Auto Trait Implementations§
impl<H, T> Freeze for Seq<H, T>
impl<H, T> RefUnwindSafe for Seq<H, T>where
H: RefUnwindSafe,
T: RefUnwindSafe,
impl<H, T> Send for Seq<H, T>
impl<H, T> Sync for Seq<H, T>
impl<H, T> Unpin for Seq<H, T>
impl<H, T> UnsafeUnpin for Seq<H, T>where
H: UnsafeUnpin,
T: UnsafeUnpin,
impl<H, T> UnwindSafe for Seq<H, T>where
H: UnwindSafe,
T: 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