pub enum RepositoryAction {
Created,
Deleted,
Archived,
Unarchived,
Publicized,
Privatized,
}
Variants§
Trait Implementations§
Source§impl Clone for RepositoryAction
impl Clone for RepositoryAction
Source§fn clone(&self) -> RepositoryAction
fn clone(&self) -> RepositoryAction
Returns a copy 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 RepositoryAction
impl Debug for RepositoryAction
Source§impl<'de> Deserialize<'de> for RepositoryAction
impl<'de> Deserialize<'de> for RepositoryAction
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 Hash for RepositoryAction
impl Hash for RepositoryAction
Source§impl Ord for RepositoryAction
impl Ord for RepositoryAction
Source§fn cmp(&self, other: &RepositoryAction) -> Ordering
fn cmp(&self, other: &RepositoryAction) -> 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 RepositoryAction
impl PartialEq for RepositoryAction
Source§impl PartialOrd for RepositoryAction
impl PartialOrd for RepositoryAction
impl Copy for RepositoryAction
impl Eq for RepositoryAction
impl StructuralPartialEq for RepositoryAction
Auto Trait Implementations§
impl Freeze for RepositoryAction
impl RefUnwindSafe for RepositoryAction
impl Send for RepositoryAction
impl Sync for RepositoryAction
impl Unpin for RepositoryAction
impl UnwindSafe for RepositoryAction
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