#[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,
}展开描述
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 实现§
源代码§impl Clone for AVIODirEntry
impl Clone for AVIODirEntry
源代码§fn clone(&self) -> AVIODirEntry
fn clone(&self) -> AVIODirEntry
Returns a duplicate of the value. 阅读更多
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source 执行拷贝赋值。 阅读更多源代码§impl Debug for AVIODirEntry
impl Debug for AVIODirEntry
源代码§impl PartialEq for AVIODirEntry
impl PartialEq for AVIODirEntry
impl Copy for AVIODirEntry
impl Eq for AVIODirEntry
impl StructuralPartialEq for AVIODirEntry
自动 trait 实现§
impl Freeze for AVIODirEntry
impl RefUnwindSafe for AVIODirEntry
impl !Send for AVIODirEntry
impl !Sync for AVIODirEntry
impl Unpin for AVIODirEntry
impl UnsafeUnpin for AVIODirEntry
impl UnwindSafe for AVIODirEntry
blanket 实现§
源代码§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
源代码§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值可变地借用。 阅读更多