#[repr(C)]pub struct svn_client_diff_summarize_t {
pub path: *const c_char,
pub summarize_kind: svn_client_diff_summarize_kind_t,
pub prop_changed: svn_boolean_t,
pub node_kind: svn_node_kind_t,
}
Expand description
A struct that describes the diff of an item. Passed to #svn_client_diff_summarize_func_t.
@note Fields may be added to the end of this structure in future versions. Therefore, users shouldn’t allocate structures of this type, to preserve binary compatibility.
@since New in 1.4.
Fields§
§path: *const c_char
Path relative to the target. If the target is a file, path is the empty string.
summarize_kind: svn_client_diff_summarize_kind_t
Change kind
prop_changed: svn_boolean_t
Properties changed? For consistency with ‘svn status’ output, this should be false if summarize_kind is _added or _deleted.
node_kind: svn_node_kind_t
File or dir
Trait Implementations§
Source§impl Clone for svn_client_diff_summarize_t
impl Clone for svn_client_diff_summarize_t
Source§fn clone(&self) -> svn_client_diff_summarize_t
fn clone(&self) -> svn_client_diff_summarize_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_client_diff_summarize_t
impl Debug for svn_client_diff_summarize_t
impl Copy for svn_client_diff_summarize_t
Auto Trait Implementations§
impl Freeze for svn_client_diff_summarize_t
impl RefUnwindSafe for svn_client_diff_summarize_t
impl !Send for svn_client_diff_summarize_t
impl !Sync for svn_client_diff_summarize_t
impl Unpin for svn_client_diff_summarize_t
impl UnwindSafe for svn_client_diff_summarize_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