pub enum RepositoryDeletedAction {
Deleted,
}
Expand description
RepositoryDeletedAction
JSON schema
{
"type": "string",
"enum": [
"deleted"
]
}
Variants§
Deleted
Trait Implementations§
Source§impl Clone for RepositoryDeletedAction
impl Clone for RepositoryDeletedAction
Source§fn clone(&self) -> RepositoryDeletedAction
fn clone(&self) -> RepositoryDeletedAction
Returns a duplicate of the value. Read more
1.0.0 · 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 RepositoryDeletedAction
impl Debug for RepositoryDeletedAction
Source§impl<'de> Deserialize<'de> for RepositoryDeletedAction
impl<'de> Deserialize<'de> for RepositoryDeletedAction
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 From<&RepositoryDeletedAction> for RepositoryDeletedAction
impl From<&RepositoryDeletedAction> for RepositoryDeletedAction
Source§fn from(value: &RepositoryDeletedAction) -> Self
fn from(value: &RepositoryDeletedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for RepositoryDeletedAction
impl FromStr for RepositoryDeletedAction
Source§impl Hash for RepositoryDeletedAction
impl Hash for RepositoryDeletedAction
Source§impl Ord for RepositoryDeletedAction
impl Ord for RepositoryDeletedAction
Source§fn cmp(&self, other: &RepositoryDeletedAction) -> Ordering
fn cmp(&self, other: &RepositoryDeletedAction) -> Ordering
1.21.0 · 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 RepositoryDeletedAction
impl PartialEq for RepositoryDeletedAction
Source§impl PartialOrd for RepositoryDeletedAction
impl PartialOrd for RepositoryDeletedAction
Source§impl Serialize for RepositoryDeletedAction
impl Serialize for RepositoryDeletedAction
Source§impl ToString for RepositoryDeletedAction
impl ToString for RepositoryDeletedAction
Source§impl TryFrom<&String> for RepositoryDeletedAction
impl TryFrom<&String> for RepositoryDeletedAction
Source§impl TryFrom<&str> for RepositoryDeletedAction
impl TryFrom<&str> for RepositoryDeletedAction
Source§impl TryFrom<String> for RepositoryDeletedAction
impl TryFrom<String> for RepositoryDeletedAction
impl Copy for RepositoryDeletedAction
impl Eq for RepositoryDeletedAction
impl StructuralPartialEq for RepositoryDeletedAction
Auto Trait Implementations§
impl Freeze for RepositoryDeletedAction
impl RefUnwindSafe for RepositoryDeletedAction
impl Send for RepositoryDeletedAction
impl Sync for RepositoryDeletedAction
impl Unpin for RepositoryDeletedAction
impl UnwindSafe for RepositoryDeletedAction
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