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 RefUnwindSafe for QuotedStringParseLevel
impl Send for QuotedStringParseLevel
impl Sync for QuotedStringParseLevel
impl Unpin for QuotedStringParseLevel
impl UnwindSafe for QuotedStringParseLevel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more