pub enum QuotedStringParseLevel {
QuotedString,
QuotedText,
}
Expand description
Defines the level at which the grammar should be applied.
Variants§
QuotedString
The whole quoted-string grammar.
QuotedText
Only sequences of qdtext / quoted-pair values. Some protocols like Stun only checks sequences of qdtext and quoted-pairs without the double quotes and their surrounding whitespaces.
Auto Trait Implementations§
impl Freeze for QuotedStringParseLevel
impl RefUnwindSafe for QuotedStringParseLevel
impl Send for QuotedStringParseLevel
impl Sync for QuotedStringParseLevel
impl Unpin for QuotedStringParseLevel
impl UnwindSafe for QuotedStringParseLevel
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