pub struct DateTimeParseError {
pub message: String,
}Expand description
Error type for RFC 3339 parsing failures.
Fields§
§message: StringTrait Implementations§
Source§impl Clone for DateTimeParseError
impl Clone for DateTimeParseError
Source§fn clone(&self) -> DateTimeParseError
fn clone(&self) -> DateTimeParseError
Returns a duplicate 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 DateTimeParseError
impl Debug for DateTimeParseError
Source§impl Display for DateTimeParseError
impl Display for DateTimeParseError
Source§impl Error for DateTimeParseError
impl Error for DateTimeParseError
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 PartialEq for DateTimeParseError
impl PartialEq for DateTimeParseError
impl Eq for DateTimeParseError
impl StructuralPartialEq for DateTimeParseError
Auto Trait Implementations§
impl Freeze for DateTimeParseError
impl RefUnwindSafe for DateTimeParseError
impl Send for DateTimeParseError
impl Sync for DateTimeParseError
impl Unpin for DateTimeParseError
impl UnwindSafe for DateTimeParseError
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