Struct domain::utils::base16::SymbolConverter
source · pub struct SymbolConverter { /* private fields */ }
Expand description
A Base 16 decoder that can be used as a converter for a scanner.
Implementations§
Trait Implementations§
source§impl Clone for SymbolConverter
impl Clone for SymbolConverter
source§fn clone(&self) -> SymbolConverter
fn clone(&self) -> SymbolConverter
Returns a copy 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<Sym, Error> ConvertSymbols<Sym, Error> for SymbolConverterwhere
Sym: Into<EntrySymbol>,
Error: ScannerError,
impl<Sym, Error> ConvertSymbols<Sym, Error> for SymbolConverterwhere Sym: Into<EntrySymbol>, Error: ScannerError,
source§impl Debug for SymbolConverter
impl Debug for SymbolConverter
source§impl Default for SymbolConverter
impl Default for SymbolConverter
source§fn default() -> SymbolConverter
fn default() -> SymbolConverter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SymbolConverter
impl Send for SymbolConverter
impl Sync for SymbolConverter
impl Unpin for SymbolConverter
impl UnwindSafe for SymbolConverter
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<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Targetwhere
Self::Error: Into<Infallible>,
fn octets_into(self) -> Targetwhere Self::Error: Into<Infallible>,
Performs an infallible conversion.