pub struct CommitResponseCommitter {
pub subtype_0: Option<CommitUserInfo>,
pub subtype_1: Option<Map<String, Value>>,
}Expand description
GitHub committer info
JSON schema
{
"description": "GitHub committer info",
"anyOf": [
{
"$ref": "#/components/schemas/CommitUserInfo"
},
{
"type": [
"object",
"null"
]
}
]
}Fields§
§subtype_0: Option<CommitUserInfo>§subtype_1: Option<Map<String, Value>>Implementations§
Source§impl CommitResponseCommitter
impl CommitResponseCommitter
pub fn builder() -> CommitResponseCommitter
Trait Implementations§
Source§impl Clone for CommitResponseCommitter
impl Clone for CommitResponseCommitter
Source§fn clone(&self) -> CommitResponseCommitter
fn clone(&self) -> CommitResponseCommitter
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 CommitResponseCommitter
impl Debug for CommitResponseCommitter
Source§impl Default for CommitResponseCommitter
impl Default for CommitResponseCommitter
Source§impl<'de> Deserialize<'de> for CommitResponseCommitter
impl<'de> Deserialize<'de> for CommitResponseCommitter
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<&CommitResponseCommitter> for CommitResponseCommitter
impl From<&CommitResponseCommitter> for CommitResponseCommitter
Source§fn from(value: &CommitResponseCommitter) -> Self
fn from(value: &CommitResponseCommitter) -> Self
Converts to this type from the input type.
Source§impl From<CommitResponseCommitter> for CommitResponseCommitter
impl From<CommitResponseCommitter> for CommitResponseCommitter
Source§fn from(value: CommitResponseCommitter) -> Self
fn from(value: CommitResponseCommitter) -> Self
Converts to this type from the input type.
Source§impl Serialize for CommitResponseCommitter
impl Serialize for CommitResponseCommitter
Source§impl TryFrom<CommitResponseCommitter> for CommitResponseCommitter
impl TryFrom<CommitResponseCommitter> for CommitResponseCommitter
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CommitResponseCommitter) -> Result<Self, ConversionError>
fn try_from(value: CommitResponseCommitter) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CommitResponseCommitter
impl RefUnwindSafe for CommitResponseCommitter
impl Send for CommitResponseCommitter
impl Sync for CommitResponseCommitter
impl Unpin for CommitResponseCommitter
impl UnwindSafe for CommitResponseCommitter
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