pub enum RecordDataError {
UrlParse {
raw: String,
msg: String,
},
LanguageParse {
raw: String,
msg: String,
},
}Expand description
Possible errors that might occur when processing data from records.
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for RecordDataError
impl Debug for RecordDataError
Source§impl Display for RecordDataError
impl Display for RecordDataError
Source§impl Error for RecordDataError
impl Error for RecordDataError
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()
Auto Trait Implementations§
impl Freeze for RecordDataError
impl RefUnwindSafe for RecordDataError
impl Send for RecordDataError
impl Sync for RecordDataError
impl Unpin for RecordDataError
impl UnsafeUnpin for RecordDataError
impl UnwindSafe for RecordDataError
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