#[repr(C)]pub struct svn_log_changed_path_t {
pub action: c_char,
pub copyfrom_path: *const c_char,
pub copyfrom_rev: svn_revnum_t,
}
Expand description
A structure to represent a path that changed for a log entry. Same as the first three fields of #svn_log_changed_path2_t.
@deprecated Provided for backward compatibility with the 1.5 API.
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).
Trait Implementations§
Source§impl Clone for svn_log_changed_path_t
impl Clone for svn_log_changed_path_t
Source§fn clone(&self) -> svn_log_changed_path_t
fn clone(&self) -> svn_log_changed_path_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_path_t
impl Debug for svn_log_changed_path_t
Source§impl Default for svn_log_changed_path_t
impl Default for svn_log_changed_path_t
impl Copy for svn_log_changed_path_t
Auto Trait Implementations§
impl Freeze for svn_log_changed_path_t
impl RefUnwindSafe for svn_log_changed_path_t
impl !Send for svn_log_changed_path_t
impl !Sync for svn_log_changed_path_t
impl Unpin for svn_log_changed_path_t
impl UnwindSafe for svn_log_changed_path_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