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