Struct denvars::PassthroughParser
source · pub struct PassthroughParser;Expand description
Parser that just passes the value to visit_str.
Trait Implementations§
source§impl BoolParser for PassthroughParser
impl BoolParser for PassthroughParser
source§impl Clone for PassthroughParser
impl Clone for PassthroughParser
source§fn clone(&self) -> PassthroughParser
fn clone(&self) -> PassthroughParser
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 MapParser for PassthroughParser
impl MapParser for PassthroughParser
source§impl NumParser for PassthroughParser
impl NumParser for PassthroughParser
fn parse_i8<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_i16<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_i32<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_i64<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_i128<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_u8<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_u16<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_u32<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_u64<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_u128<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_f32<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
fn parse_f64<'de, V>(&self, value: &str, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,
source§impl SeqParser for PassthroughParser
impl SeqParser for PassthroughParser
source§impl StructParser for PassthroughParser
impl StructParser for PassthroughParser
impl Copy for PassthroughParser
Auto Trait Implementations§
impl RefUnwindSafe for PassthroughParser
impl Send for PassthroughParser
impl Sync for PassthroughParser
impl Unpin for PassthroughParser
impl UnwindSafe for PassthroughParser
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