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