#[repr(C)]pub struct AVIODirEntry {
pub name: *mut c_char,
pub type_: c_int,
pub utf8: c_int,
pub size: i64,
pub modification_timestamp: i64,
pub access_timestamp: i64,
pub status_change_timestamp: i64,
pub user_id: i64,
pub group_id: i64,
pub filemode: i64,
}
Expand description
Describes single entry of the directory.
Only name and type fields are guaranteed be set. Rest of fields are protocol or/and platform dependent and might be unknown.
Fields§
§name: *mut c_char
< Filename
type_: c_int
< Type of the entry
utf8: c_int
< Set to 1 when name is encoded with UTF-8, 0 otherwise. Name can be encoded with UTF-8 even though 0 is set.
size: i64
< File size in bytes, -1 if unknown.
modification_timestamp: i64
< Time of last modification in microseconds since unix epoch, -1 if unknown.
access_timestamp: i64
< Time of last access in microseconds since unix epoch, -1 if unknown.
status_change_timestamp: i64
< Time of last status change in microseconds since unix epoch, -1 if unknown.
user_id: i64
< User ID of owner, -1 if unknown.
group_id: i64
< Group ID of owner, -1 if unknown.
filemode: i64
< Unix file mode, -1 if unknown.
Trait Implementations§
Source§impl Clone for AVIODirEntry
impl Clone for AVIODirEntry
Source§fn clone(&self) -> AVIODirEntry
fn clone(&self) -> AVIODirEntry
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 moreSource§impl Debug for AVIODirEntry
impl Debug for AVIODirEntry
impl Copy for AVIODirEntry
Auto Trait Implementations§
impl Freeze for AVIODirEntry
impl RefUnwindSafe for AVIODirEntry
impl !Send for AVIODirEntry
impl !Sync for AVIODirEntry
impl Unpin for AVIODirEntry
impl UnwindSafe for AVIODirEntry
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