pub struct ParseOracleTypeError { /* private fields */ }
Expand description
An error when parsing a string into an Oracle type fails.
This appears only in boxed data associated with Error::ParseError
.
Implementations§
Source§impl ParseOracleTypeError
impl ParseOracleTypeError
pub fn new(typename: &'static str) -> ParseOracleTypeError
Trait Implementations§
Source§impl Clone for ParseOracleTypeError
impl Clone for ParseOracleTypeError
Source§fn clone(&self) -> ParseOracleTypeError
fn clone(&self) -> ParseOracleTypeError
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 ParseOracleTypeError
impl Debug for ParseOracleTypeError
Source§impl Display for ParseOracleTypeError
impl Display for ParseOracleTypeError
Source§impl Error for ParseOracleTypeError
impl Error for ParseOracleTypeError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§impl From<ParseOracleTypeError> for Error
impl From<ParseOracleTypeError> for Error
Source§fn from(err: ParseOracleTypeError) -> Self
fn from(err: ParseOracleTypeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseOracleTypeError
impl PartialEq for ParseOracleTypeError
impl Eq for ParseOracleTypeError
impl StructuralPartialEq for ParseOracleTypeError
Auto Trait Implementations§
impl Freeze for ParseOracleTypeError
impl RefUnwindSafe for ParseOracleTypeError
impl Send for ParseOracleTypeError
impl Sync for ParseOracleTypeError
impl Unpin for ParseOracleTypeError
impl UnwindSafe for ParseOracleTypeError
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