Struct ParseWeekdayError
pub struct ParseWeekdayError {
pub(crate) _dummy: (),
}Available on crate feature
time only.Expand description
An error resulting from reading Weekday value with FromStr.
Fields§
§_dummy: ()Trait Implementations§
Source§impl Clone for ParseWeekdayError
impl Clone for ParseWeekdayError
Source§fn clone(&self) -> ParseWeekdayError
fn clone(&self) -> ParseWeekdayError
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 ParseWeekdayError
impl Debug for ParseWeekdayError
Source§impl Display for ParseWeekdayError
impl Display for ParseWeekdayError
Source§impl Error for ParseWeekdayError
impl Error for ParseWeekdayError
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<ParseWeekdayError> for ParseError
impl From<ParseWeekdayError> for ParseError
Source§fn from(err: ParseWeekdayError) -> ParseError
fn from(err: ParseWeekdayError) -> ParseError
Converts to this type from the input type.
Source§impl PartialEq for ParseWeekdayError
impl PartialEq for ParseWeekdayError
impl Eq for ParseWeekdayError
impl StructuralPartialEq for ParseWeekdayError
Auto Trait Implementations§
impl Freeze for ParseWeekdayError
impl RefUnwindSafe for ParseWeekdayError
impl Send for ParseWeekdayError
impl Sync for ParseWeekdayError
impl Unpin for ParseWeekdayError
impl UnwindSafe for ParseWeekdayError
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