pub enum ParenthesisParseErrorOwned {
UnclosedBraces,
NoOpeningBraceFound,
NoClosingBraceFound,
StopWordNotFound(String),
EmptyInput,
}Expand description
Owned version of ParenthesisParseError.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ParenthesisParseErrorOwned
impl Clone for ParenthesisParseErrorOwned
Source§fn clone(&self) -> ParenthesisParseErrorOwned
fn clone(&self) -> ParenthesisParseErrorOwned
Returns a duplicate 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 ParenthesisParseErrorOwned
impl Debug for ParenthesisParseErrorOwned
impl StructuralPartialEq for ParenthesisParseErrorOwned
Auto Trait Implementations§
impl Freeze for ParenthesisParseErrorOwned
impl RefUnwindSafe for ParenthesisParseErrorOwned
impl Send for ParenthesisParseErrorOwned
impl Sync for ParenthesisParseErrorOwned
impl Unpin for ParenthesisParseErrorOwned
impl UnwindSafe for ParenthesisParseErrorOwned
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