Struct fs_extra::dir::DirContent[][src]

pub struct DirContent {
    pub dir_size: u64,
    pub files: Vec<String>,
    pub directories: Vec<String>,
}

A structure which imclude information about directory

Fields

dir_size: u64

Directory size.

files: Vec<String>

List all files directory and sub directories.

directories: Vec<String>

List all folders and sub folders directory.

Auto Trait Implementations

impl RefUnwindSafe for DirContent

impl Send for DirContent

impl Sync for DirContent

impl Unpin for DirContent

impl UnwindSafe for DirContent

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.