Struct hg_parser::Revision [−][src]
pub struct Revision(pub u32);
Expand description
Mercurial revision’s index.
Implementations
impl Revision
[src]
impl Revision
[src]pub fn range_to(self, lim: Self) -> RevisionRangeⓘNotable traits for RevisionRange
impl Iterator for RevisionRange type Item = Revision;
[src]
pub fn range_to(self, lim: Self) -> RevisionRangeⓘNotable traits for RevisionRange
impl Iterator for RevisionRange type Item = Revision;
[src]Return iterator for a range from index to lim
.
pub fn range(self) -> RevisionRangeⓘNotable traits for RevisionRange
impl Iterator for RevisionRange type Item = Revision;
[src]
pub fn range(self) -> RevisionRangeⓘNotable traits for RevisionRange
impl Iterator for RevisionRange type Item = Revision;
[src]Return an open ended iterator from index.
Trait Implementations
impl<'a> IntoIterator for &'a Revision
[src]
impl<'a> IntoIterator for &'a Revision
[src]Convert a Revision
into an iterator of Revision
values
starting at Revision
’s value. ie, Revision
(2).into_iter() => Revision
(2), Revision
(3), …
impl Ord for Revision
[src]
impl Ord for Revision
[src]impl PartialOrd<Revision> for Revision
[src]
impl PartialOrd<Revision> for Revision
[src]fn partial_cmp(&self, other: &Revision) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Revision) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Revision
[src]
impl Eq for Revision
[src]
impl StructuralEq for Revision
[src]
impl StructuralPartialEq for Revision
[src]
Auto Trait Implementations
impl RefUnwindSafe for Revision
impl Send for Revision
impl Sync for Revision
impl Unpin for Revision
impl UnwindSafe for Revision
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more