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