Struct libgit2_sys::git_index_entry
source · #[repr(C)]pub struct git_index_entry {
pub ctime: git_index_time,
pub mtime: git_index_time,
pub dev: u32,
pub ino: u32,
pub mode: u32,
pub uid: u32,
pub gid: u32,
pub file_size: u32,
pub id: git_oid,
pub flags: u16,
pub flags_extended: u16,
pub path: *const c_char,
}
Fields§
§ctime: git_index_time
§mtime: git_index_time
§dev: u32
§ino: u32
§mode: u32
§uid: u32
§gid: u32
§file_size: u32
§id: git_oid
§flags: u16
§flags_extended: u16
§path: *const c_char
Trait Implementations§
source§impl Clone for git_index_entry
impl Clone for git_index_entry
source§fn clone(&self) -> git_index_entry
fn clone(&self) -> git_index_entry
Returns a copy 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 moreimpl Copy for git_index_entry
Auto Trait Implementations§
impl Freeze for git_index_entry
impl RefUnwindSafe for git_index_entry
impl !Send for git_index_entry
impl !Sync for git_index_entry
impl Unpin for git_index_entry
impl UnwindSafe for git_index_entry
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