pub struct CheckRunRerequestedRequestedAction {
pub identifier: Option<String>,
}
Expand description
The action requested by the user.
JSON schema
{
"description": "The action requested by the user.",
"type": "object",
"properties": {
"identifier": {
"description": "The integrator reference of the action requested by the user.",
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§identifier: Option<String>
The integrator reference of the action requested by the user.
Implementations§
Trait Implementations§
Source§impl Clone for CheckRunRerequestedRequestedAction
impl Clone for CheckRunRerequestedRequestedAction
Source§fn clone(&self) -> CheckRunRerequestedRequestedAction
fn clone(&self) -> CheckRunRerequestedRequestedAction
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<'de> Deserialize<'de> for CheckRunRerequestedRequestedAction
impl<'de> Deserialize<'de> for CheckRunRerequestedRequestedAction
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<&CheckRunRerequestedRequestedAction> for CheckRunRerequestedRequestedAction
impl From<&CheckRunRerequestedRequestedAction> for CheckRunRerequestedRequestedAction
Source§fn from(value: &CheckRunRerequestedRequestedAction) -> Self
fn from(value: &CheckRunRerequestedRequestedAction) -> Self
Converts to this type from the input type.
Source§impl From<CheckRunRerequestedRequestedAction> for CheckRunRerequestedRequestedAction
impl From<CheckRunRerequestedRequestedAction> for CheckRunRerequestedRequestedAction
Source§fn from(value: CheckRunRerequestedRequestedAction) -> Self
fn from(value: CheckRunRerequestedRequestedAction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CheckRunRerequestedRequestedAction
impl RefUnwindSafe for CheckRunRerequestedRequestedAction
impl Send for CheckRunRerequestedRequestedAction
impl Sync for CheckRunRerequestedRequestedAction
impl Unpin for CheckRunRerequestedRequestedAction
impl UnwindSafe for CheckRunRerequestedRequestedAction
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