pub enum Delimiters {
Hash,
Star,
Empty,
}Expand description
This is the delimiter(s) that will be used to process the input. Can be ‘#’, ‘*’, or an empty array.
Variants§
Trait Implementations§
Source§impl Clone for Delimiters
impl Clone for Delimiters
Source§fn clone(&self) -> Delimiters
fn clone(&self) -> Delimiters
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 Debug for Delimiters
impl Debug for Delimiters
Source§impl Default for Delimiters
impl Default for Delimiters
Source§fn default() -> Delimiters
fn default() -> Delimiters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Delimiters
impl<'de> Deserialize<'de> for Delimiters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for Delimiters
impl Hash for Delimiters
Source§impl Ord for Delimiters
impl Ord for Delimiters
Source§fn cmp(&self, other: &Delimiters) -> Ordering
fn cmp(&self, other: &Delimiters) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Delimiters
impl PartialEq for Delimiters
Source§impl PartialOrd for Delimiters
impl PartialOrd for Delimiters
Source§impl Serialize for Delimiters
impl Serialize for Delimiters
impl Copy for Delimiters
impl Eq for Delimiters
impl StructuralPartialEq for Delimiters
Auto Trait Implementations§
impl Freeze for Delimiters
impl RefUnwindSafe for Delimiters
impl Send for Delimiters
impl Sync for Delimiters
impl Unpin for Delimiters
impl UnwindSafe for Delimiters
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