pub enum CheckSuiteEvent {
Completed(CheckSuiteCompleted),
Requested(CheckSuiteRequested),
Rerequested(CheckSuiteRerequested),
}
Expand description
CheckSuiteEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/check_suite$completed"
},
{
"$ref": "#/definitions/check_suite$requested"
},
{
"$ref": "#/definitions/check_suite$rerequested"
}
]
}
Variants§
Trait Implementations§
Source§impl Clone for CheckSuiteEvent
impl Clone for CheckSuiteEvent
Source§fn clone(&self) -> CheckSuiteEvent
fn clone(&self) -> CheckSuiteEvent
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 CheckSuiteEvent
impl Debug for CheckSuiteEvent
Source§impl<'de> Deserialize<'de> for CheckSuiteEvent
impl<'de> Deserialize<'de> for CheckSuiteEvent
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<&CheckSuiteEvent> for CheckSuiteEvent
impl From<&CheckSuiteEvent> for CheckSuiteEvent
Source§fn from(value: &CheckSuiteEvent) -> Self
fn from(value: &CheckSuiteEvent) -> Self
Converts to this type from the input type.
Source§impl From<CheckSuiteCompleted> for CheckSuiteEvent
impl From<CheckSuiteCompleted> for CheckSuiteEvent
Source§fn from(value: CheckSuiteCompleted) -> Self
fn from(value: CheckSuiteCompleted) -> Self
Converts to this type from the input type.
Source§impl From<CheckSuiteRequested> for CheckSuiteEvent
impl From<CheckSuiteRequested> for CheckSuiteEvent
Source§fn from(value: CheckSuiteRequested) -> Self
fn from(value: CheckSuiteRequested) -> Self
Converts to this type from the input type.
Source§impl From<CheckSuiteRerequested> for CheckSuiteEvent
impl From<CheckSuiteRerequested> for CheckSuiteEvent
Source§fn from(value: CheckSuiteRerequested) -> Self
fn from(value: CheckSuiteRerequested) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CheckSuiteEvent
impl RefUnwindSafe for CheckSuiteEvent
impl Send for CheckSuiteEvent
impl Sync for CheckSuiteEvent
impl Unpin for CheckSuiteEvent
impl UnwindSafe for CheckSuiteEvent
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