pub struct CommitDigest {
pub commit: String,
pub seq: i64,
pub ts: String,
pub origin: String,
pub actor: Option<String>,
pub summary: String,
pub revisions: Vec<DigestRevision>,
}Expand description
One commit of the feed.
Fields§
§commit: String§seq: i64§ts: String§origin: String§actor: Option<String>§summary: StringA human line (the fixtures do not pin it).
revisions: Vec<DigestRevision>Implementations§
Trait Implementations§
Source§impl Clone for CommitDigest
impl Clone for CommitDigest
Source§fn clone(&self) -> CommitDigest
fn clone(&self) -> CommitDigest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommitDigest
impl Debug for CommitDigest
impl Eq for CommitDigest
Source§impl PartialEq for CommitDigest
impl PartialEq for CommitDigest
impl StructuralPartialEq for CommitDigest
Auto Trait Implementations§
impl Freeze for CommitDigest
impl RefUnwindSafe for CommitDigest
impl Send for CommitDigest
impl Sync for CommitDigest
impl Unpin for CommitDigest
impl UnsafeUnpin for CommitDigest
impl UnwindSafe for CommitDigest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.