Enum cargo_credential::Operation
source · #[non_exhaustive]pub enum Operation<'a> {
Read,
Publish {
name: &'a str,
vers: &'a str,
cksum: &'a str,
},
Yank {
name: &'a str,
vers: &'a str,
},
Unyank {
name: &'a str,
vers: &'a str,
},
Owners {
name: &'a str,
},
Unknown,
}
Expand description
A record of what kind of operation is happening that we should generate a token for.
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.
Read
The user is attempting to fetch a crate.
Publish
Fields
The user is attempting to publish a crate.
Yank
The user is attempting to yank a crate.
Unyank
The user is attempting to unyank a crate.
Owners
The user is attempting to modify the owners of a crate.
Unknown
Trait Implementations§
source§impl<'de: 'a, 'a> Deserialize<'de> for Operation<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Operation<'a>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> PartialEq<Operation<'a>> for Operation<'a>
impl<'a> PartialEq<Operation<'a>> for Operation<'a>
impl<'a> Eq for Operation<'a>
impl<'a> StructuralEq for Operation<'a>
impl<'a> StructuralPartialEq for Operation<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Operation<'a>
impl<'a> Send for Operation<'a>
impl<'a> Sync for Operation<'a>
impl<'a> Unpin for Operation<'a>
impl<'a> UnwindSafe for Operation<'a>
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
impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes
Size for each variant:
Read
: 0 bytesPublish
: 48 bytesYank
: 32 bytesUnyank
: 32 bytesOwners
: 16 bytesUnknown
: 0 bytes