pub struct DeleteFileEntry {
pub file_path: String,
}Expand description
A file that is deleted as part of a commit.
Fields§
§file_path: StringThe full path of the file to be deleted, including the name of the file.
Trait Implementations§
Source§impl Clone for DeleteFileEntry
impl Clone for DeleteFileEntry
Source§fn clone(&self) -> DeleteFileEntry
fn clone(&self) -> DeleteFileEntry
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 DeleteFileEntry
impl Debug for DeleteFileEntry
Source§impl Default for DeleteFileEntry
impl Default for DeleteFileEntry
Source§fn default() -> DeleteFileEntry
fn default() -> DeleteFileEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFileEntry
impl PartialEq for DeleteFileEntry
Source§impl Serialize for DeleteFileEntry
impl Serialize for DeleteFileEntry
impl StructuralPartialEq for DeleteFileEntry
Auto Trait Implementations§
impl Freeze for DeleteFileEntry
impl RefUnwindSafe for DeleteFileEntry
impl Send for DeleteFileEntry
impl Sync for DeleteFileEntry
impl Unpin for DeleteFileEntry
impl UnwindSafe for DeleteFileEntry
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