pub struct InformationOfTheCommitToProcess {
pub sha: Option<String>,
pub tree: Option<String>,
pub message: Option<String>,
pub author: Option<String>,
}
Fields§
§sha: Option<String>
§tree: Option<String>
§message: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for InformationOfTheCommitToProcess
impl Clone for InformationOfTheCommitToProcess
Source§fn clone(&self) -> InformationOfTheCommitToProcess
fn clone(&self) -> InformationOfTheCommitToProcess
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 Default for InformationOfTheCommitToProcess
impl Default for InformationOfTheCommitToProcess
Source§fn default() -> InformationOfTheCommitToProcess
fn default() -> InformationOfTheCommitToProcess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InformationOfTheCommitToProcess
impl<'de> Deserialize<'de> for InformationOfTheCommitToProcess
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 PartialEq for InformationOfTheCommitToProcess
impl PartialEq for InformationOfTheCommitToProcess
Source§fn eq(&self, other: &InformationOfTheCommitToProcess) -> bool
fn eq(&self, other: &InformationOfTheCommitToProcess) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InformationOfTheCommitToProcess
Auto Trait Implementations§
impl Freeze for InformationOfTheCommitToProcess
impl RefUnwindSafe for InformationOfTheCommitToProcess
impl Send for InformationOfTheCommitToProcess
impl Sync for InformationOfTheCommitToProcess
impl Unpin for InformationOfTheCommitToProcess
impl UnwindSafe for InformationOfTheCommitToProcess
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