pub enum DotHandlingPolicy {
ReplaceAllDots,
PreserveAllDots,
PreserveDotsBetweenDecimalDigits,
}Expand description
Dot handling before all other filtered characters become delimiters.
Variants§
ReplaceAllDots
Treat every dot as a delimiter.
PreserveAllDots
Preserve every dot.
PreserveDotsBetweenDecimalDigits
Preserve a dot only when the previous and next characters are decimal digits.
Trait Implementations§
Source§impl Clone for DotHandlingPolicy
impl Clone for DotHandlingPolicy
Source§fn clone(&self) -> DotHandlingPolicy
fn clone(&self) -> DotHandlingPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DotHandlingPolicy
Source§impl Debug for DotHandlingPolicy
impl Debug for DotHandlingPolicy
impl Eq for DotHandlingPolicy
Source§impl PartialEq for DotHandlingPolicy
impl PartialEq for DotHandlingPolicy
impl StructuralPartialEq for DotHandlingPolicy
Auto Trait Implementations§
impl Freeze for DotHandlingPolicy
impl RefUnwindSafe for DotHandlingPolicy
impl Send for DotHandlingPolicy
impl Sync for DotHandlingPolicy
impl Unpin for DotHandlingPolicy
impl UnsafeUnpin for DotHandlingPolicy
impl UnwindSafe for DotHandlingPolicy
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