pub enum IntersectError {
Parse(Error),
Error(String),
}
Expand description
An error in intersecting expressions
Variants§
Trait Implementations§
Source§impl Debug for IntersectError
impl Debug for IntersectError
Source§impl Display for IntersectError
impl Display for IntersectError
Source§impl Error for IntersectError
impl Error for IntersectError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for IntersectError
impl RefUnwindSafe for IntersectError
impl Send for IntersectError
impl Sync for IntersectError
impl Unpin for IntersectError
impl UnwindSafe for IntersectError
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