pub struct PeriodParseError(pub String);Expand description
Error returned when a period string cannot be parsed.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for PeriodParseError
impl Clone for PeriodParseError
Source§fn clone(&self) -> PeriodParseError
fn clone(&self) -> PeriodParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PeriodParseError
impl Debug for PeriodParseError
Source§impl Display for PeriodParseError
impl Display for PeriodParseError
Source§impl Error for PeriodParseError
impl Error for PeriodParseError
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 PeriodParseError
impl PartialEq for PeriodParseError
Source§fn eq(&self, other: &PeriodParseError) -> bool
fn eq(&self, other: &PeriodParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PeriodParseError
impl StructuralPartialEq for PeriodParseError
Auto Trait Implementations§
impl Freeze for PeriodParseError
impl RefUnwindSafe for PeriodParseError
impl Send for PeriodParseError
impl Sync for PeriodParseError
impl Unpin for PeriodParseError
impl UnsafeUnpin for PeriodParseError
impl UnwindSafe for PeriodParseError
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