pub enum PackageStatus {
New,
ExportPending,
Exported,
ExportFailed,
ImportFailed,
Imported,
ImportPending,
}Variants§
Trait Implementations§
Source§impl Debug for PackageStatus
impl Debug for PackageStatus
Source§impl FromStr for PackageStatus
impl FromStr for PackageStatus
Source§impl PartialEq for PackageStatus
impl PartialEq for PackageStatus
impl Eq for PackageStatus
impl StructuralPartialEq for PackageStatus
Auto Trait Implementations§
impl Freeze for PackageStatus
impl RefUnwindSafe for PackageStatus
impl Send for PackageStatus
impl Sync for PackageStatus
impl Unpin for PackageStatus
impl UnwindSafe for PackageStatus
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.