pub struct Step {
pub kind: StepKind,
pub rule: StepRule,
pub positions: Vec<StepPosition>,
}
Fields§
§kind: StepKind
§rule: StepRule
§positions: Vec<StepPosition>
Implementations§
Trait Implementations§
Source§impl FromWasmAbi for Step
impl FromWasmAbi for Step
Source§impl IntoWasmAbi for Step
impl IntoWasmAbi for Step
Source§impl LongRefFromWasmAbi for Step
impl LongRefFromWasmAbi for Step
Source§impl OptionFromWasmAbi for Step
impl OptionFromWasmAbi for Step
Source§impl OptionIntoWasmAbi for Step
impl OptionIntoWasmAbi for Step
Source§impl RefFromWasmAbi for Step
impl RefFromWasmAbi for Step
Source§impl RefMutFromWasmAbi for Step
impl RefMutFromWasmAbi for Step
Source§impl TryFromJsValue for Step
impl TryFromJsValue for Step
Source§impl VectorFromWasmAbi for Step
impl VectorFromWasmAbi for Step
Source§impl VectorIntoWasmAbi for Step
impl VectorIntoWasmAbi for Step
impl SupportsConstructor for Step
impl SupportsInstanceProperty for Step
impl SupportsStaticProperty for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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 moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.