#[repr(C)]pub struct svn_merge_range_t {
pub start: svn_revnum_t,
pub end: svn_revnum_t,
pub inheritable: svn_boolean_t,
}
Expand description
Mergeinfo representing a merge of a range of revisions.
@since New in 1.5
Fields§
§start: svn_revnum_t
If the ‘start’ field is less than the ‘end’ field then ‘start’ is exclusive and ‘end’ inclusive of the range described. This is termed a forward merge range. If ‘start’ is greater than ‘end’ then the opposite is true. This is termed a reverse merge range. If ‘start’ equals ‘end’ the meaning of the range is not defined.
end: svn_revnum_t
§inheritable: svn_boolean_t
Whether this merge range should be inherited by treewise descendants of the path to which the range applies.
Trait Implementations§
Source§impl Clone for svn_merge_range_t
impl Clone for svn_merge_range_t
Source§fn clone(&self) -> svn_merge_range_t
fn clone(&self) -> svn_merge_range_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_merge_range_t
impl Debug for svn_merge_range_t
Source§impl Default for svn_merge_range_t
impl Default for svn_merge_range_t
Source§fn default() -> svn_merge_range_t
fn default() -> svn_merge_range_t
Returns the “default value” for a type. Read more
impl Copy for svn_merge_range_t
Auto Trait Implementations§
impl Freeze for svn_merge_range_t
impl RefUnwindSafe for svn_merge_range_t
impl Send for svn_merge_range_t
impl Sync for svn_merge_range_t
impl Unpin for svn_merge_range_t
impl UnwindSafe for svn_merge_range_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