pub struct GitIndexPlan {
pub commit_mode: &'static str,
pub has_staged_changes: bool,
pub staged_paths: Vec<String>,
pub unstaged_paths: Vec<String>,
pub untracked_paths: Vec<String>,
pub will_commit: Vec<String>,
pub preserved_after_commit: Vec<String>,
}Fields§
§commit_mode: &'static str§has_staged_changes: bool§staged_paths: Vec<String>§unstaged_paths: Vec<String>§untracked_paths: Vec<String>§will_commit: Vec<String>§preserved_after_commit: Vec<String>Trait Implementations§
Source§impl Clone for GitIndexPlan
impl Clone for GitIndexPlan
Source§fn clone(&self) -> GitIndexPlan
fn clone(&self) -> GitIndexPlan
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 GitIndexPlan
impl Debug for GitIndexPlan
Source§impl JsonSchema for GitIndexPlan
impl JsonSchema for GitIndexPlan
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for GitIndexPlan
impl RefUnwindSafe for GitIndexPlan
impl Send for GitIndexPlan
impl Sync for GitIndexPlan
impl Unpin for GitIndexPlan
impl UnsafeUnpin for GitIndexPlan
impl UnwindSafe for GitIndexPlan
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