#[non_exhaustive]pub struct FetchFileGitStatusesResponse {
pub uncommitted_file_changes: Vec<UncommittedFileChange>,
/* private fields */
}Expand description
FetchFileGitStatuses response message.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uncommitted_file_changes: Vec<UncommittedFileChange>A list of all files which have uncommitted Git changes. There will only be a single entry for any given file.
Implementations§
Source§impl FetchFileGitStatusesResponse
impl FetchFileGitStatusesResponse
pub fn new() -> Self
Sourcepub fn set_uncommitted_file_changes<T, V>(self, v: T) -> Self
pub fn set_uncommitted_file_changes<T, V>(self, v: T) -> Self
Sets the value of uncommitted_file_changes.
Trait Implementations§
Source§impl Clone for FetchFileGitStatusesResponse
impl Clone for FetchFileGitStatusesResponse
Source§fn clone(&self) -> FetchFileGitStatusesResponse
fn clone(&self) -> FetchFileGitStatusesResponse
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 FetchFileGitStatusesResponse
impl Debug for FetchFileGitStatusesResponse
Source§impl Default for FetchFileGitStatusesResponse
impl Default for FetchFileGitStatusesResponse
Source§fn default() -> FetchFileGitStatusesResponse
fn default() -> FetchFileGitStatusesResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for FetchFileGitStatusesResponse
impl PartialEq for FetchFileGitStatusesResponse
Source§fn eq(&self, other: &FetchFileGitStatusesResponse) -> bool
fn eq(&self, other: &FetchFileGitStatusesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FetchFileGitStatusesResponse
Auto Trait Implementations§
impl Freeze for FetchFileGitStatusesResponse
impl RefUnwindSafe for FetchFileGitStatusesResponse
impl Send for FetchFileGitStatusesResponse
impl Sync for FetchFileGitStatusesResponse
impl Unpin for FetchFileGitStatusesResponse
impl UnwindSafe for FetchFileGitStatusesResponse
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