pub struct JobIdParseError(/* private fields */);Expand description
The error returned when JobId fails to parse from a string.
Wraps the underlying parse failure as text so the uuid crate does not leak
into worklane’s public API (a uuid major bump would otherwise be a breaking
change here).
Trait Implementations§
Source§impl Clone for JobIdParseError
impl Clone for JobIdParseError
Source§fn clone(&self) -> JobIdParseError
fn clone(&self) -> JobIdParseError
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 JobIdParseError
impl Debug for JobIdParseError
Source§impl Display for JobIdParseError
impl Display for JobIdParseError
impl Eq for JobIdParseError
Source§impl Error for JobIdParseError
impl Error for JobIdParseError
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 JobIdParseError
impl PartialEq for JobIdParseError
Source§fn eq(&self, other: &JobIdParseError) -> bool
fn eq(&self, other: &JobIdParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JobIdParseError
Auto Trait Implementations§
impl Freeze for JobIdParseError
impl RefUnwindSafe for JobIdParseError
impl Send for JobIdParseError
impl Sync for JobIdParseError
impl Unpin for JobIdParseError
impl UnsafeUnpin for JobIdParseError
impl UnwindSafe for JobIdParseError
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