pub struct ChainOptions {
pub tags: Vec<String>,
pub isolation: ChainIsolation,
}Expand description
Options for chain execution.
Fields§
Tags for the chain task (used when submitted async).
isolation: ChainIsolationIsolation mode for this chain.
Trait Implementations§
Source§impl Clone for ChainOptions
impl Clone for ChainOptions
Source§fn clone(&self) -> ChainOptions
fn clone(&self) -> ChainOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChainOptions
impl Debug for ChainOptions
Source§impl Default for ChainOptions
impl Default for ChainOptions
Source§fn default() -> ChainOptions
fn default() -> ChainOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChainOptions
impl<'de> Deserialize<'de> for ChainOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChainOptions
impl RefUnwindSafe for ChainOptions
impl Send for ChainOptions
impl Sync for ChainOptions
impl Unpin for ChainOptions
impl UnsafeUnpin for ChainOptions
impl UnwindSafe for ChainOptions
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