pub enum PackageKindParseError {
Empty,
}Expand description
Errors returned while parsing package kinds.
Variants§
Empty
The kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for PackageKindParseError
impl Clone for PackageKindParseError
Source§fn clone(&self) -> PackageKindParseError
fn clone(&self) -> PackageKindParseError
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 PackageKindParseError
impl Debug for PackageKindParseError
Source§impl Display for PackageKindParseError
impl Display for PackageKindParseError
Source§impl Error for PackageKindParseError
impl Error for PackageKindParseError
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 PackageKindParseError
impl PartialEq for PackageKindParseError
Source§fn eq(&self, other: &PackageKindParseError) -> bool
fn eq(&self, other: &PackageKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PackageKindParseError
impl Eq for PackageKindParseError
impl StructuralPartialEq for PackageKindParseError
Auto Trait Implementations§
impl Freeze for PackageKindParseError
impl RefUnwindSafe for PackageKindParseError
impl Send for PackageKindParseError
impl Sync for PackageKindParseError
impl Unpin for PackageKindParseError
impl UnsafeUnpin for PackageKindParseError
impl UnwindSafe for PackageKindParseError
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