pub struct InstructionParseParams {}Expand description
Parameters of instruction.
Implementations§
Trait Implementations§
Source§impl Debug for InstructionParseParams
impl Debug for InstructionParseParams
Source§impl InstructionParseParamsAdapter for InstructionParseParams
impl InstructionParseParamsAdapter for InstructionParseParams
Source§fn about_command_format(&self) -> &'static str
fn about_command_format(&self) -> &'static str
Print info about command format.
Source§fn instruction_split_is_command<Src: AsRef<str>>(&self, src: Src) -> bool
fn instruction_split_is_command<Src: AsRef<str>>(&self, src: Src) -> bool
Check that command begins with dot.
Source§fn command_name_normalize<Src: AsRef<str>>(&self, src: Src) -> Box<str>
fn command_name_normalize<Src: AsRef<str>>(&self, src: Src) -> Box<str>
Normalize command name.
Source§fn parse_from_splits<I>(&self, splits: I) -> Instruction
fn parse_from_splits<I>(&self, splits: I) -> Instruction
Parse instruction from splits.
Source§impl PartialEq for InstructionParseParams
impl PartialEq for InstructionParseParams
impl StructuralPartialEq for InstructionParseParams
Auto Trait Implementations§
impl Freeze for InstructionParseParams
impl RefUnwindSafe for InstructionParseParams
impl Send for InstructionParseParams
impl Sync for InstructionParseParams
impl Unpin for InstructionParseParams
impl UnwindSafe for InstructionParseParams
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> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
Source§fn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.