pub struct StepHandle {
pub step: String,
pub handle: Handle,
}Expand description
A handle (see Handle) of the step step.
Fields§
§step: String§handle: HandleTrait Implementations§
Source§impl Clone for StepHandle
impl Clone for StepHandle
Source§fn clone(&self) -> StepHandle
fn clone(&self) -> StepHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StepHandle
impl Debug for StepHandle
Source§impl PartialEq for StepHandle
impl PartialEq for StepHandle
Source§fn eq(&self, other: &StepHandle) -> bool
fn eq(&self, other: &StepHandle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StepHandle
impl Serialize for StepHandle
impl StructuralPartialEq for StepHandle
Auto Trait Implementations§
impl Freeze for StepHandle
impl RefUnwindSafe for StepHandle
impl Send for StepHandle
impl Sync for StepHandle
impl Unpin for StepHandle
impl UnsafeUnpin for StepHandle
impl UnwindSafe for StepHandle
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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