Struct github_webhook::payload_types::Committer
source · pub struct Committer<'a> {
pub name: &'a str,
pub email: Option<&'a str>,
pub date: Option<&'a str>,
pub username: Option<&'a str>,
}
Expand description
Metaproperties for Git author/committer information.
Fields§
§name: &'a str
The git author’s name.
email: Option<&'a str>
The git author’s email address.
date: Option<&'a str>
§username: Option<&'a str>
Trait Implementations§
source§impl<'de: 'a, 'a> Deserialize<'de> for Committer<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Committer<'a>
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
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Committer<'a>
impl<'a> Send for Committer<'a>
impl<'a> Sync for Committer<'a>
impl<'a> Unpin for Committer<'a>
impl<'a> UnwindSafe for Committer<'a>
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