#[non_exhaustive]
pub enum PackagePublish<'g> { Unrestricted, Registries(&'g [String]), }
Expand description

Locations that a package can be published to.

Returned by PackageMetadata::publish.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Unrestricted

Publication of this package is unrestricted.

§

Registries(&'g [String])

This package can only be published to the listed package registry.

If the list is empty, this package cannot be published to any registries.

Implementations§

source§

impl<'g> PackagePublish<'g>

source

pub const CRATES_IO: &'static str = "crates-io"

The string "crates-io", indicating that a package can be published to crates.io.

source

pub fn is_unrestricted(&self) -> bool

Returns true if this package can be published to any package registry.

§Examples
use guppy::graph::PackagePublish;

assert!(PackagePublish::Unrestricted.is_unrestricted());
assert!(!PackagePublish::Registries(&[PackagePublish::CRATES_IO.to_owned()]).is_unrestricted());
assert!(!PackagePublish::Registries(&[]).is_unrestricted());
source

pub fn can_publish_to(&self, registry: impl AsRef<str>) -> bool

Returns true if a package can be published to the given package registry.

§Examples
use guppy::graph::PackagePublish;

// Unrestricted means this package can be published to any registry.
assert!(PackagePublish::Unrestricted.can_publish_to(PackagePublish::CRATES_IO));
assert!(PackagePublish::Unrestricted.can_publish_to("my-registry"));

// Publish to specific registries but not others.
let crates_io = &[PackagePublish::CRATES_IO.to_owned()];
let crates_io_publish = PackagePublish::Registries(crates_io);
assert!(crates_io_publish.can_publish_to(PackagePublish::CRATES_IO));
assert!(!crates_io_publish.can_publish_to("my-registry"));

// Cannot publish to any registries.
assert!(!PackagePublish::Registries(&[]).can_publish_to(PackagePublish::CRATES_IO));
source

pub fn can_publish_to_crates_io(&self) -> bool

Returns true if a package can be published to crates.io.

source

pub fn is_never(&self) -> bool

Returns true if a package cannot be published to any registries.

§Examples
use guppy::graph::PackagePublish;

assert!(!PackagePublish::Unrestricted.is_never());
assert!(!PackagePublish::Registries(&[PackagePublish::CRATES_IO.to_owned()]).is_never());
assert!(PackagePublish::Registries(&[]).is_never());

Trait Implementations§

source§

impl<'g> Clone for PackagePublish<'g>

source§

fn clone(&self) -> PackagePublish<'g>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'g> Debug for PackagePublish<'g>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'g> Hash for PackagePublish<'g>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'g> PartialEq for PackagePublish<'g>

source§

fn eq(&self, other: &PackagePublish<'g>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'g> Copy for PackagePublish<'g>

source§

impl<'g> Eq for PackagePublish<'g>

source§

impl<'g> StructuralPartialEq for PackagePublish<'g>

Auto Trait Implementations§

§

impl<'g> RefUnwindSafe for PackagePublish<'g>

§

impl<'g> Send for PackagePublish<'g>

§

impl<'g> Sync for PackagePublish<'g>

§

impl<'g> Unpin for PackagePublish<'g>

§

impl<'g> UnwindSafe for PackagePublish<'g>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V