pub struct Active<S> {
pub serial: u64,
pub turn: Option<String>,
pub sink: Option<S>,
pub early: Vec<Value>,
pub cancelled: bool,
pub interrupt_sent: bool,
pub failure: Option<Value>,
}Fields§
§serial: u64§turn: Option<String>§sink: Option<S>§early: Vec<Value>§cancelled: bool§interrupt_sent: bool§failure: Option<Value>Auto Trait Implementations§
impl<S> Freeze for Active<S>
impl<S> RefUnwindSafe for Active<S>where
Option<S>: RefUnwindSafe,
impl<S> Send for Active<S>
impl<S> Sync for Active<S>
impl<S> Unpin for Active<S>
impl<S> UnsafeUnpin for Active<S>where
Option<S>: UnsafeUnpin,
impl<S> UnwindSafe for Active<S>where
Option<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