#[repr(C)]pub struct svn_io_dirent_t {
pub kind: svn_node_kind_t,
pub special: svn_boolean_t,
}
Expand description
Represents the kind and special status of a directory entry.
Note that the first two fields are exactly identical to svn_io_dirent2_t to allow returning a svn_io_dirent2_t as a svn_io_dirent_t.
@since New in 1.3.
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().
Trait Implementations§
Source§impl Clone for svn_io_dirent_t
impl Clone for svn_io_dirent_t
Source§fn clone(&self) -> svn_io_dirent_t
fn clone(&self) -> svn_io_dirent_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for svn_io_dirent_t
impl Debug for svn_io_dirent_t
Source§impl Default for svn_io_dirent_t
impl Default for svn_io_dirent_t
impl Copy for svn_io_dirent_t
Auto Trait Implementations§
impl Freeze for svn_io_dirent_t
impl RefUnwindSafe for svn_io_dirent_t
impl Send for svn_io_dirent_t
impl Sync for svn_io_dirent_t
impl Unpin for svn_io_dirent_t
impl UnwindSafe for svn_io_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