pub struct CommitItem {
pub id: String,
pub msg: String,
pub meta: String,
pub author: String,
}Expand description
Lightweight commit representation for lists.
Fields§
§id: String§msg: String§meta: StringTrait Implementations§
Source§impl Clone for CommitItem
impl Clone for CommitItem
Source§fn clone(&self) -> CommitItem
fn clone(&self) -> CommitItem
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 CommitItem
impl Debug for CommitItem
Source§impl<'de> Deserialize<'de> for CommitItem
impl<'de> Deserialize<'de> for CommitItem
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 CommitItem
impl PartialEq for CommitItem
Source§impl Serialize for CommitItem
impl Serialize for CommitItem
impl Eq for CommitItem
impl StructuralPartialEq for CommitItem
Auto Trait Implementations§
impl Freeze for CommitItem
impl RefUnwindSafe for CommitItem
impl Send for CommitItem
impl Sync for CommitItem
impl Unpin for CommitItem
impl UnwindSafe for CommitItem
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