#[repr(C)]pub struct svn_io_dirent2_t {
pub kind: svn_node_kind_t,
pub special: svn_boolean_t,
pub filesize: svn_filesize_t,
pub mtime: apr_time_t,
}
Expand description
A set of directory entry data elements as returned by svn_io_get_dirents
Note that the first two fields are exactly identical to svn_io_dirent_t to allow returning a svn_io_dirent2_t as a svn_io_dirent_t.
Use svn_io_dirent2_create() to create new svn_dirent2_t instances or svn_io_dirent2_dup() to duplicate an existing instance.
@since New in 1.7.
Fields§
§kind: svn_node_kind_t
The kind of this entry.
special: svn_boolean_t
If @c kind is #svn_node_file, whether this entry is a special file; else FALSE.
@see svn_io_check_special_path().
filesize: svn_filesize_t
The filesize of this entry or undefined for a directory
mtime: apr_time_t
The time the file was last modified
Trait Implementations§
Auto Trait Implementations§
impl Freeze for svn_io_dirent2_t
impl RefUnwindSafe for svn_io_dirent2_t
impl Send for svn_io_dirent2_t
impl Sync for svn_io_dirent2_t
impl Unpin for svn_io_dirent2_t
impl UnwindSafe for svn_io_dirent2_t
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