pub struct SourceState {
pub head_rev: String,
pub dirty_rev: Option<String>,
pub store_ref: String,
}Fields§
§head_rev: StringWorkspace HEAD at checkpoint time.
dirty_rev: Option<String>Dangling commit (parent: head_rev) holding uncommitted and untracked state; absent when the worktree was clean.
store_ref: StringRef in the store repo keeping these commits alive.
Trait Implementations§
Source§impl Clone for SourceState
impl Clone for SourceState
Source§fn clone(&self) -> SourceState
fn clone(&self) -> SourceState
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 SourceState
impl Debug for SourceState
Source§impl<'de> Deserialize<'de> for SourceState
impl<'de> Deserialize<'de> for SourceState
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
impl Eq for SourceState
Source§impl PartialEq for SourceState
impl PartialEq for SourceState
Source§impl Serialize for SourceState
impl Serialize for SourceState
impl StructuralPartialEq for SourceState
Auto Trait Implementations§
impl Freeze for SourceState
impl RefUnwindSafe for SourceState
impl Send for SourceState
impl Sync for SourceState
impl Unpin for SourceState
impl UnsafeUnpin for SourceState
impl UnwindSafe for SourceState
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