pub struct ConflictState {
pub entry: String,
pub entity_type: String,
pub old_sha: String,
pub new_sha: String,
}Expand description
Conflict state persisted in .skillfile/conflict.
Fields§
§entry: String§entity_type: String§old_sha: String§new_sha: StringTrait Implementations§
Source§impl Clone for ConflictState
impl Clone for ConflictState
Source§fn clone(&self) -> ConflictState
fn clone(&self) -> ConflictState
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 ConflictState
impl Debug for ConflictState
Source§impl<'de> Deserialize<'de> for ConflictState
impl<'de> Deserialize<'de> for ConflictState
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 ConflictState
impl PartialEq for ConflictState
Source§impl Serialize for ConflictState
impl Serialize for ConflictState
impl Eq for ConflictState
impl StructuralPartialEq for ConflictState
Auto Trait Implementations§
impl Freeze for ConflictState
impl RefUnwindSafe for ConflictState
impl Send for ConflictState
impl Sync for ConflictState
impl Unpin for ConflictState
impl UnsafeUnpin for ConflictState
impl UnwindSafe for ConflictState
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