Struct gdal_sys::VSIDIREntry[][src]

#[repr(C)]
pub struct VSIDIREntry { pub pszName: *mut c_char, pub nMode: c_int, pub nSize: vsi_l_offset, pub nMTime: GIntBig, pub bModeKnown: c_char, pub bSizeKnown: c_char, pub bMTimeKnown: c_char, pub papszExtra: *mut *mut c_char, }

Directory entry.

Fields

pszName: *mut c_char

Filename

nMode: c_int

File mode. See VSI_ISREG() / VSI_ISDIR()

nSize: vsi_l_offset

File size

nMTime: GIntBig

Last modification time (seconds since 1970/01/01)

bModeKnown: c_char

Whether nMode is known: 0 = unknown, 1 = known.

bSizeKnown: c_char

Whether nSize is known: 0 = unknown, 1 = known.

bMTimeKnown: c_char

Whether nMTime is known: 0 = unknown, 1 = known.

papszExtra: *mut *mut c_char

NULL-terminated list of extra properties.

Trait Implementations

impl Clone for VSIDIREntry[src]

impl Copy for VSIDIREntry[src]

impl Debug for VSIDIREntry[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.