pub struct IdentityConverter;Expand description
Identity converter (no conversion).
Trait Implementations§
Source§impl Debug for IdentityConverter
impl Debug for IdentityConverter
Source§impl Default for IdentityConverter
impl Default for IdentityConverter
Source§fn default() -> IdentityConverter
fn default() -> IdentityConverter
Returns the “default value” for a type. Read more
Source§impl ValueConverter for IdentityConverter
impl ValueConverter for IdentityConverter
Source§fn convert(&self, value: &str) -> Result<String, ConversionError>
fn convert(&self, value: &str) -> Result<String, ConversionError>
Convert from source type to target type.
Source§fn convert_back(&self, value: &str) -> Result<String, ConversionError>
fn convert_back(&self, value: &str) -> Result<String, ConversionError>
Convert back from target type to source type.