pub struct PolarError(pub ErrorKind);
Tuple Fields§
§0: ErrorKind
Implementations§
Source§impl PolarError
impl PolarError
Trait Implementations§
Source§impl Clone for PolarError
impl Clone for PolarError
Source§fn clone(&self) -> PolarError
fn clone(&self) -> PolarError
Returns a copy 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 PolarError
impl Debug for PolarError
Source§impl Display for PolarError
impl Display for PolarError
Source§impl Error for PolarError
impl Error for PolarError
1.30.0 · 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()
Source§impl From<OperationalError> for PolarError
impl From<OperationalError> for PolarError
Source§fn from(err: OperationalError) -> Self
fn from(err: OperationalError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for PolarError
impl From<ParseError> for PolarError
Source§fn from(err: ParseError) -> Self
fn from(err: ParseError) -> Self
Converts to this type from the input type.
Source§impl From<PolarError> for Diagnostic
impl From<PolarError> for Diagnostic
Source§fn from(err: PolarError) -> Self
fn from(err: PolarError) -> Self
Converts to this type from the input type.
Source§impl From<PolarError> for FormattedPolarError
impl From<PolarError> for FormattedPolarError
Source§fn from(other: PolarError) -> Self
fn from(other: PolarError) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeError> for PolarError
impl From<RuntimeError> for PolarError
Source§fn from(err: RuntimeError) -> Self
fn from(err: RuntimeError) -> Self
Converts to this type from the input type.
Source§impl From<ValidationError> for PolarError
impl From<ValidationError> for PolarError
Source§fn from(err: ValidationError) -> Self
fn from(err: ValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PolarError
impl RefUnwindSafe for PolarError
impl Send for PolarError
impl Sync for PolarError
impl Unpin for PolarError
impl UnwindSafe for PolarError
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