pub enum UnmappablePolicy {
Error,
Replace,
Skip,
}Expand description
Policy for handling unmappable characters during codepage conversion. Policy for handling unmappable characters during decode
§Examples
use copybook_codepage::UnmappablePolicy;
let policy = UnmappablePolicy::Replace;
assert_eq!(format!("{policy}"), "replace");Variants§
Trait Implementations§
Source§impl Clone for UnmappablePolicy
impl Clone for UnmappablePolicy
Source§fn clone(&self) -> UnmappablePolicy
fn clone(&self) -> UnmappablePolicy
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 UnmappablePolicy
impl Debug for UnmappablePolicy
Source§impl<'de> Deserialize<'de> for UnmappablePolicy
impl<'de> Deserialize<'de> for UnmappablePolicy
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnmappablePolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnmappablePolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for UnmappablePolicy
impl Display for UnmappablePolicy
Source§impl FromStr for UnmappablePolicy
impl FromStr for UnmappablePolicy
Source§type Err = Infallible
type Err = Infallible
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<UnmappablePolicy, <UnmappablePolicy as FromStr>::Err>
fn from_str( s: &str, ) -> Result<UnmappablePolicy, <UnmappablePolicy as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for UnmappablePolicy
impl PartialEq for UnmappablePolicy
Source§impl Serialize for UnmappablePolicy
impl Serialize for UnmappablePolicy
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl ValueEnum for UnmappablePolicy
impl ValueEnum for UnmappablePolicy
Source§fn value_variants<'a>() -> &'a [UnmappablePolicy]
fn value_variants<'a>() -> &'a [UnmappablePolicy]
All possible argument values, in display order.
Source§fn to_possible_value<'a>(&self) -> Option<PossibleValue>
fn to_possible_value<'a>(&self) -> Option<PossibleValue>
The canonical argument value. Read more
impl Copy for UnmappablePolicy
impl Eq for UnmappablePolicy
impl StructuralPartialEq for UnmappablePolicy
Auto Trait Implementations§
impl Freeze for UnmappablePolicy
impl RefUnwindSafe for UnmappablePolicy
impl Send for UnmappablePolicy
impl Sync for UnmappablePolicy
impl Unpin for UnmappablePolicy
impl UnsafeUnpin for UnmappablePolicy
impl UnwindSafe for UnmappablePolicy
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