pub enum PackagistPackageType {
Library,
Project,
Metapackage,
ComposerPlugin,
SymfonyBundle,
Other,
}Expand description
Packagist package type metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PackagistPackageType
impl Clone for PackagistPackageType
Source§fn clone(&self) -> PackagistPackageType
fn clone(&self) -> PackagistPackageType
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 PackagistPackageType
impl Debug for PackagistPackageType
Source§impl Hash for PackagistPackageType
impl Hash for PackagistPackageType
Source§impl Ord for PackagistPackageType
impl Ord for PackagistPackageType
Source§fn cmp(&self, other: &PackagistPackageType) -> Ordering
fn cmp(&self, other: &PackagistPackageType) -> 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 PackagistPackageType
impl PartialEq for PackagistPackageType
Source§fn eq(&self, other: &PackagistPackageType) -> bool
fn eq(&self, other: &PackagistPackageType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PackagistPackageType
impl PartialOrd for PackagistPackageType
impl Copy for PackagistPackageType
impl Eq for PackagistPackageType
impl StructuralPartialEq for PackagistPackageType
Auto Trait Implementations§
impl Freeze for PackagistPackageType
impl RefUnwindSafe for PackagistPackageType
impl Send for PackagistPackageType
impl Sync for PackagistPackageType
impl Unpin for PackagistPackageType
impl UnsafeUnpin for PackagistPackageType
impl UnwindSafe for PackagistPackageType
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