#[repr(C)]pub struct aws_directory_entry {
pub path: aws_byte_cursor,
pub relative_path: aws_byte_cursor,
pub file_type: c_int,
pub file_size: i64,
}
Fields
path: aws_byte_cursor
Absolute path to the entry from the current process root.
relative_path: aws_byte_cursor
Path to the entry relative to the current working directory.
file_type: c_int
Bit-field of enum aws_file_type
file_size: i64
Size of the file on disk.
Trait Implementations
sourceimpl Clone for aws_directory_entry
impl Clone for aws_directory_entry
sourcefn clone(&self) -> aws_directory_entry
fn clone(&self) -> aws_directory_entry
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_directory_entry
impl Debug for aws_directory_entry
sourceimpl Default for aws_directory_entry
impl Default for aws_directory_entry
sourceimpl PartialEq<aws_directory_entry> for aws_directory_entry
impl PartialEq<aws_directory_entry> for aws_directory_entry
sourcefn eq(&self, other: &aws_directory_entry) -> bool
fn eq(&self, other: &aws_directory_entry) -> bool
impl Copy for aws_directory_entry
impl Eq for aws_directory_entry
impl StructuralEq for aws_directory_entry
impl StructuralPartialEq for aws_directory_entry
Auto Trait Implementations
impl RefUnwindSafe for aws_directory_entry
impl !Send for aws_directory_entry
impl !Sync for aws_directory_entry
impl Unpin for aws_directory_entry
impl UnwindSafe for aws_directory_entry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more