pub struct NullInterpretation {}Expand description
An interpretation that does nothing except
Trait Implementations§
Source§impl Clone for NullInterpretation
impl Clone for NullInterpretation
Source§fn clone(&self) -> NullInterpretation
fn clone(&self) -> NullInterpretation
Returns a duplicate of the value. Read more
1.0.0 · 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 NullInterpretation
impl Debug for NullInterpretation
Source§impl Default for NullInterpretation
impl Default for NullInterpretation
Source§fn default() -> NullInterpretation
fn default() -> NullInterpretation
Returns the “default value” for a type. Read more
Source§impl Interpretation for NullInterpretation
impl Interpretation for NullInterpretation
type Item = ()
Source§fn system() -> Result<System>
fn system() -> Result<System>
Returns a default system that can handle symbols that this Interpretation
understands. Read more
fn interpret<S: SymbolStore>( &self, _: &S, _: &ProductionString, ) -> Result<Self::Item>
fn default_interpret<S: SymbolStore>( symbols: &S, string: &ProductionString, ) -> Result<Self::Item>
Source§fn run_settings(&self) -> RunSettings
fn run_settings(&self) -> RunSettings
Returns default run settings for this interpretation. Read more
Auto Trait Implementations§
impl Freeze for NullInterpretation
impl RefUnwindSafe for NullInterpretation
impl Send for NullInterpretation
impl Sync for NullInterpretation
impl Unpin for NullInterpretation
impl UnwindSafe for NullInterpretation
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