pub struct ExecutionState<'de> { /* private fields */ }Expand description
The wire type corresponding to ExecutionState.
Implementations§
Source§impl<'de> ExecutionState<'de>
impl<'de> ExecutionState<'de>
pub fn dependency_token(&self) -> Option<&Event>
pub fn take_dependency_token(&mut self) -> Option<Event>
Trait Implementations§
Source§impl Constrained for ExecutionState<'_>
impl Constrained for ExecutionState<'_>
Source§impl<'de> Debug for ExecutionState<'de>
impl<'de> Debug for ExecutionState<'de>
Source§impl<'de, ___D> Decode<___D> for ExecutionState<'de>where
___D: Decoder<'de> + ?Sized + HandleDecoder,
impl<'de, ___D> Decode<___D> for ExecutionState<'de>where
___D: Decoder<'de> + ?Sized + HandleDecoder,
Source§impl<'de> Drop for ExecutionState<'de>
impl<'de> Drop for ExecutionState<'de>
Source§impl<___E> Encode<ExecutionState<'static>, ___E> for ExecutionStatewhere
___E: Encoder + ?Sized + HandleEncoder,
impl<___E> Encode<ExecutionState<'static>, ___E> for ExecutionStatewhere
___E: Encoder + ?Sized + HandleEncoder,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<ExecutionState<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<ExecutionState<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<'de> FromWire<ExecutionState<'de>> for ExecutionState
impl<'de> FromWire<ExecutionState<'de>> for ExecutionState
Source§fn from_wire(wire_: ExecutionState<'de>) -> Self
fn from_wire(wire_: ExecutionState<'de>) -> Self
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl<'de> IntoNatural for ExecutionState<'de>
impl<'de> IntoNatural for ExecutionState<'de>
Source§type Natural = ExecutionState
type Natural = ExecutionState
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for ExecutionState<'static>
impl Wire for ExecutionState<'static>
Source§type Narrowed<'de> = ExecutionState<'de>
type Narrowed<'de> = ExecutionState<'de>
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(out: &mut MaybeUninit<Self>)
fn zero_padding(out: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl<'de> Freeze for ExecutionState<'de>
impl<'de> RefUnwindSafe for ExecutionState<'de>
impl<'de> Send for ExecutionState<'de>
impl<'de> Sync for ExecutionState<'de>
impl<'de> Unpin for ExecutionState<'de>
impl<'de> UnsafeUnpin for ExecutionState<'de>
impl<'de> !UnwindSafe for ExecutionState<'de>
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<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]