Enum markup5ever::buffer_queue::SetResult
source · pub enum SetResult {
FromSet(char),
NotFromSet(StrTendril),
}
Expand description
Result from pop_except_from
containing either a character from a SmallCharSet
, or a
string buffer of characters not from the set.
Variants§
FromSet(char)
A character from the SmallCharSet
.
NotFromSet(StrTendril)
A string buffer containing no characters from the SmallCharSet
.
Trait Implementations§
source§impl PartialEq for SetResult
impl PartialEq for SetResult
impl Eq for SetResult
impl StructuralPartialEq for SetResult
Auto Trait Implementations§
impl !Freeze for SetResult
impl !RefUnwindSafe for SetResult
impl !Send for SetResult
impl !Sync for SetResult
impl Unpin for SetResult
impl UnwindSafe for SetResult
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