pub struct ParseRefGeneError {
pub message: String,
}
Fields
message: String
Implementations
sourceimpl ParseRefGeneError
impl ParseRefGeneError
pub fn new<S: Display>(s: S) -> ParseRefGeneError
Trait Implementations
sourceimpl Debug for ParseRefGeneError
impl Debug for ParseRefGeneError
sourceimpl Display for ParseRefGeneError
impl Display for ParseRefGeneError
sourceimpl Error for ParseRefGeneError
impl Error for ParseRefGeneError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<&str> for ParseRefGeneError
impl From<&str> for ParseRefGeneError
sourcefn from(e: &str) -> ParseRefGeneError
fn from(e: &str) -> ParseRefGeneError
Converts to this type from the input type.
sourceimpl From<ParseIntError> for ParseRefGeneError
impl From<ParseIntError> for ParseRefGeneError
sourcefn from(e: ParseIntError) -> ParseRefGeneError
fn from(e: ParseIntError) -> ParseRefGeneError
Converts to this type from the input type.
sourceimpl From<ParseRefGeneError> for ReadWriteError
impl From<ParseRefGeneError> for ReadWriteError
sourcefn from(err: ParseRefGeneError) -> Self
fn from(err: ParseRefGeneError) -> Self
Converts to this type from the input type.
sourceimpl From<String> for ParseRefGeneError
impl From<String> for ParseRefGeneError
sourcefn from(e: String) -> ParseRefGeneError
fn from(e: String) -> ParseRefGeneError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ParseRefGeneError
impl Send for ParseRefGeneError
impl Sync for ParseRefGeneError
impl Unpin for ParseRefGeneError
impl UnwindSafe for ParseRefGeneError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more