#[repr(C)]pub struct svn_fs_path_change_t {
pub node_rev_id: *const svn_fs_id_t,
pub change_kind: svn_fs_path_change_kind_t,
pub text_mod: svn_boolean_t,
pub prop_mod: svn_boolean_t,
}
Expand description
Similar to #svn_fs_path_change2_t, but without kind and copyfrom information.
@deprecated Provided for backwards compatibility with the 1.5 API.
Fields§
§node_rev_id: *const svn_fs_id_t
node revision id of changed path
change_kind: svn_fs_path_change_kind_t
kind of change
text_mod: svn_boolean_t
were there text mods?
prop_mod: svn_boolean_t
were there property mods?
Trait Implementations§
Source§impl Clone for svn_fs_path_change_t
impl Clone for svn_fs_path_change_t
Source§fn clone(&self) -> svn_fs_path_change_t
fn clone(&self) -> svn_fs_path_change_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_path_change_t
impl Debug for svn_fs_path_change_t
Source§impl Default for svn_fs_path_change_t
impl Default for svn_fs_path_change_t
impl Copy for svn_fs_path_change_t
Auto Trait Implementations§
impl Freeze for svn_fs_path_change_t
impl RefUnwindSafe for svn_fs_path_change_t
impl !Send for svn_fs_path_change_t
impl !Sync for svn_fs_path_change_t
impl Unpin for svn_fs_path_change_t
impl UnwindSafe for svn_fs_path_change_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