#[repr(C)]pub struct svn_fs_dirent_t {
pub name: *const c_char,
pub id: *const svn_fs_id_t,
pub kind: svn_node_kind_t,
}
Expand description
The type of a Subversion directory entry.
Fields§
§name: *const c_char
The name of this directory entry.
id: *const svn_fs_id_t
The node revision ID it names.
kind: svn_node_kind_t
The node kind.
Trait Implementations§
Source§impl Clone for svn_fs_dirent_t
impl Clone for svn_fs_dirent_t
Source§fn clone(&self) -> svn_fs_dirent_t
fn clone(&self) -> svn_fs_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_fs_dirent_t
impl Debug for svn_fs_dirent_t
Source§impl Default for svn_fs_dirent_t
impl Default for svn_fs_dirent_t
impl Copy for svn_fs_dirent_t
Auto Trait Implementations§
impl Freeze for svn_fs_dirent_t
impl RefUnwindSafe for svn_fs_dirent_t
impl !Send for svn_fs_dirent_t
impl !Sync for svn_fs_dirent_t
impl Unpin for svn_fs_dirent_t
impl UnwindSafe for svn_fs_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