pub struct RevPath {
pub pos: u64,
pub tree: RevNode,
}Expand description
A rooted path in the revision tree.
pos is the generation number of the root node. For example, if the
earliest stored revision is 3-abc, then pos = 3.
Fields§
§pos: u64§tree: RevNodeTrait Implementations§
Auto Trait Implementations§
impl Freeze for RevPath
impl RefUnwindSafe for RevPath
impl Send for RevPath
impl Sync for RevPath
impl Unpin for RevPath
impl UnwindSafe for RevPath
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