pub enum PackagistStability {
Dev,
Alpha,
Beta,
Rc,
Stable,
}Expand description
Packagist stability metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PackagistStability
impl Clone for PackagistStability
Source§fn clone(&self) -> PackagistStability
fn clone(&self) -> PackagistStability
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 PackagistStability
impl Debug for PackagistStability
Source§impl Hash for PackagistStability
impl Hash for PackagistStability
Source§impl Ord for PackagistStability
impl Ord for PackagistStability
Source§fn cmp(&self, other: &PackagistStability) -> Ordering
fn cmp(&self, other: &PackagistStability) -> Ordering
1.21.0 (const: unstable) · 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
Source§impl PartialEq for PackagistStability
impl PartialEq for PackagistStability
Source§fn eq(&self, other: &PackagistStability) -> bool
fn eq(&self, other: &PackagistStability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PackagistStability
impl PartialOrd for PackagistStability
impl Copy for PackagistStability
impl Eq for PackagistStability
impl StructuralPartialEq for PackagistStability
Auto Trait Implementations§
impl Freeze for PackagistStability
impl RefUnwindSafe for PackagistStability
impl Send for PackagistStability
impl Sync for PackagistStability
impl Unpin for PackagistStability
impl UnsafeUnpin for PackagistStability
impl UnwindSafe for PackagistStability
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