#[repr(C)]pub struct svn_dirent_t {
pub kind: svn_node_kind_t,
pub size: svn_filesize_t,
pub has_props: svn_boolean_t,
pub created_rev: svn_revnum_t,
pub time: apr_time_t,
pub last_author: *const c_char,
}
Expand description
A general subversion directory entry.
@note To allow for extending the #svn_dirent_t structure in future releases, always use svn_dirent_create() to allocate the stucture.
@since New in 1.6.
Fields§
§kind: svn_node_kind_t
node kind
size: svn_filesize_t
length of file text, otherwise SVN_INVALID_FILESIZE
has_props: svn_boolean_t
does the node have props?
created_rev: svn_revnum_t
last rev in which this node changed
time: apr_time_t
time of created_rev (mod-time)
author of created_rev
Trait Implementations§
Auto Trait Implementations§
impl Freeze for svn_dirent_t
impl RefUnwindSafe for svn_dirent_t
impl !Send for svn_dirent_t
impl !Sync for svn_dirent_t
impl Unpin for svn_dirent_t
impl UnwindSafe for svn_dirent_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