#[repr(C)]pub struct svn_location_segment_t {
pub range_start: svn_revnum_t,
pub range_end: svn_revnum_t,
pub path: *const c_char,
}
Expand description
A representation of a segment of an object’s version history with an emphasis on the object’s location in the repository as of various revisions.
@since New in 1.5.
Fields§
§range_start: svn_revnum_t
The beginning (oldest) and ending (youngest) revisions for this segment, both inclusive.
range_end: svn_revnum_t
§path: *const c_char
The absolute (sans leading slash) path for this segment. May be NULL to indicate gaps in an object’s history.
Trait Implementations§
Source§impl Clone for svn_location_segment_t
impl Clone for svn_location_segment_t
Source§fn clone(&self) -> svn_location_segment_t
fn clone(&self) -> svn_location_segment_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_location_segment_t
impl Debug for svn_location_segment_t
Source§impl Default for svn_location_segment_t
impl Default for svn_location_segment_t
impl Copy for svn_location_segment_t
Auto Trait Implementations§
impl Freeze for svn_location_segment_t
impl RefUnwindSafe for svn_location_segment_t
impl !Send for svn_location_segment_t
impl !Sync for svn_location_segment_t
impl Unpin for svn_location_segment_t
impl UnwindSafe for svn_location_segment_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