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