#[non_exhaustive]pub enum XQueryError {
Other(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for XQueryError
impl Clone for XQueryError
Source§fn clone(&self) -> XQueryError
fn clone(&self) -> XQueryError
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 XQueryError
impl Debug for XQueryError
Source§impl FromStr for XQueryError
impl FromStr for XQueryError
Source§impl Hash for XQueryError
impl Hash for XQueryError
Source§impl PartialEq for XQueryError
impl PartialEq for XQueryError
impl Eq for XQueryError
impl StructuralPartialEq for XQueryError
Auto Trait Implementations§
impl Freeze for XQueryError
impl RefUnwindSafe for XQueryError
impl Send for XQueryError
impl Sync for XQueryError
impl Unpin for XQueryError
impl UnwindSafe for XQueryError
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