#[repr(C)]pub struct svn_wc_revision_status_t {
pub min_rev: svn_revnum_t,
pub max_rev: svn_revnum_t,
pub switched: svn_boolean_t,
pub modified: svn_boolean_t,
pub sparse_checkout: svn_boolean_t,
}
Expand description
A structure to report a summary of a working copy, including the mix of revisions found within it, whether any parts are switched or locally modified, and whether it is a sparse checkout.
@note Fields may be added to the end of this structure in future versions. Therefore, to preserve binary compatibility, users should not directly allocate structures of this type.
@since New in 1.4
Fields§
§min_rev: svn_revnum_t
< Lowest revision found
max_rev: svn_revnum_t
< Highest revision found
switched: svn_boolean_t
< Is anything switched?
modified: svn_boolean_t
< Is anything modified?
sparse_checkout: svn_boolean_t
Whether any WC paths are at a depth other than #svn_depth_infinity or are user excluded. @since New in 1.5.
Trait Implementations§
Source§impl Clone for svn_wc_revision_status_t
impl Clone for svn_wc_revision_status_t
Source§fn clone(&self) -> svn_wc_revision_status_t
fn clone(&self) -> svn_wc_revision_status_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_wc_revision_status_t
impl Debug for svn_wc_revision_status_t
Source§impl Default for svn_wc_revision_status_t
impl Default for svn_wc_revision_status_t
Source§fn default() -> svn_wc_revision_status_t
fn default() -> svn_wc_revision_status_t
Returns the “default value” for a type. Read more
impl Copy for svn_wc_revision_status_t
Auto Trait Implementations§
impl Freeze for svn_wc_revision_status_t
impl RefUnwindSafe for svn_wc_revision_status_t
impl Send for svn_wc_revision_status_t
impl Sync for svn_wc_revision_status_t
impl Unpin for svn_wc_revision_status_t
impl UnwindSafe for svn_wc_revision_status_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