#[repr(C)]pub struct svn_log_changed_path2_t {
pub action: c_char,
pub copyfrom_path: *const c_char,
pub copyfrom_rev: svn_revnum_t,
pub node_kind: svn_node_kind_t,
pub text_modified: svn_tristate_t,
pub props_modified: svn_tristate_t,
}
Expand description
A structure to represent a path that changed for a log entry.
@note To allow for extending the #svn_log_changed_path2_t structure in future releases, always use svn_log_changed_path2_create() to allocate the structure.
@since New in 1.6.
Fields§
§action: c_char
’A’dd, ’D’elete, ’R’eplace, ’M’odify
copyfrom_path: *const c_char
Source path of copy (if any).
copyfrom_rev: svn_revnum_t
Source revision of copy (if any).
node_kind: svn_node_kind_t
The type of the node, may be svn_node_unknown.
text_modified: svn_tristate_t
Is the text modified, may be svn_tristate_unknown. @since New in 1.7.
props_modified: svn_tristate_t
Are properties modified, may be svn_tristate_unknown. @since New in 1.7.
Trait Implementations§
Source§impl Clone for svn_log_changed_path2_t
impl Clone for svn_log_changed_path2_t
Source§fn clone(&self) -> svn_log_changed_path2_t
fn clone(&self) -> svn_log_changed_path2_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_log_changed_path2_t
impl Debug for svn_log_changed_path2_t
Source§impl Default for svn_log_changed_path2_t
impl Default for svn_log_changed_path2_t
impl Copy for svn_log_changed_path2_t
Auto Trait Implementations§
impl Freeze for svn_log_changed_path2_t
impl RefUnwindSafe for svn_log_changed_path2_t
impl !Send for svn_log_changed_path2_t
impl !Sync for svn_log_changed_path2_t
impl Unpin for svn_log_changed_path2_t
impl UnwindSafe for svn_log_changed_path2_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