pub struct SimpleCommit {
pub author: Box<Committer>,
pub committer: Box<Committer>,
pub id: String,
pub message: String,
pub timestamp: String,
pub tree_id: String,
}
Fields§
§committer: Box<Committer>
§id: String
§message: String
§timestamp: String
§tree_id: String
Implementations§
Trait Implementations§
Source§impl Clone for SimpleCommit
impl Clone for SimpleCommit
Source§fn clone(&self) -> SimpleCommit
fn clone(&self) -> SimpleCommit
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 SimpleCommit
impl Debug for SimpleCommit
Source§impl Default for SimpleCommit
impl Default for SimpleCommit
Source§fn default() -> SimpleCommit
fn default() -> SimpleCommit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleCommit
impl<'de> Deserialize<'de> for SimpleCommit
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 SimpleCommit
impl PartialEq for SimpleCommit
Source§impl Serialize for SimpleCommit
impl Serialize for SimpleCommit
impl StructuralPartialEq for SimpleCommit
Auto Trait Implementations§
impl Freeze for SimpleCommit
impl RefUnwindSafe for SimpleCommit
impl Send for SimpleCommit
impl Sync for SimpleCommit
impl Unpin for SimpleCommit
impl UnwindSafe for SimpleCommit
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