Enum ParseProjectIdError
pub enum ParseProjectIdError {
EmptyValue,
}
Expand description
Raised if a project ID cannot be parsed from a string.
Variants§
EmptyValue
Raised if an empty value is parsed.
Trait Implementations§
§impl Debug for ParseProjectIdError
impl Debug for ParseProjectIdError
§impl Display for ParseProjectIdError
impl Display for ParseProjectIdError
§impl Error for ParseProjectIdError
impl Error for ParseProjectIdError
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()
§impl From<ParseProjectIdError> for ParseDsnError
impl From<ParseProjectIdError> for ParseDsnError
§fn from(source: ParseProjectIdError) -> ParseDsnError
fn from(source: ParseProjectIdError) -> ParseDsnError
Converts to this type from the input type.
§impl Ord for ParseProjectIdError
impl Ord for ParseProjectIdError
§fn cmp(&self, other: &ParseProjectIdError) -> Ordering
fn cmp(&self, other: &ParseProjectIdError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for ParseProjectIdError
impl PartialEq for ParseProjectIdError
§impl PartialOrd for ParseProjectIdError
impl PartialOrd for ParseProjectIdError
impl Eq for ParseProjectIdError
impl StructuralPartialEq for ParseProjectIdError
Auto Trait Implementations§
impl Freeze for ParseProjectIdError
impl RefUnwindSafe for ParseProjectIdError
impl Send for ParseProjectIdError
impl Sync for ParseProjectIdError
impl Unpin for ParseProjectIdError
impl UnwindSafe for ParseProjectIdError
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.