Enum gix_revision::Spec
source · pub enum Spec {
Include(ObjectId),
Exclude(ObjectId),
Range {
from: ObjectId,
to: ObjectId,
},
Merge {
theirs: ObjectId,
ours: ObjectId,
},
IncludeOnlyParents(ObjectId),
ExcludeParents(ObjectId),
}
Expand description
A revision specification without any bindings to a repository, useful for serialization or movement over thread boundaries.
Note that all object ids should be a committish, but don’t have to be.
Unless the field name contains _exclusive
, the respective objects are included in the set.
Variants§
Include(ObjectId)
Include commits reachable from this revision, i.e. a
and its ancestors.
The equivalent to crate::spec::Kind::IncludeReachable, but with data.
Exclude(ObjectId)
Exclude commits reachable from this revision, i.e. a
and its ancestors. Example: ^a
.
The equivalent to crate::spec::Kind::ExcludeReachable, but with data.
Range
Every commit that is reachable from from
to to
, but not any ancestors of from
. Example: from..to
.
The equivalent to crate::spec::Kind::RangeBetween, but with data.
Fields
Merge
Every commit reachable through either theirs
or ours
, but no commit that is reachable by both. Example: theirs...ours
.
The equivalent to crate::spec::Kind::ReachableToMergeBase, but with data.
Fields
IncludeOnlyParents(ObjectId)
Include every commit of all parents of a
, but not a
itself. Example: a^@
.
The equivalent to crate::spec::Kind::IncludeReachableFromParents, but with data.
ExcludeParents(ObjectId)
Exclude every commit of all parents of a
, but not a
itself. Example: a^!
.
The equivalent to crate::spec::Kind::ExcludeReachableFromParents, but with data.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Spec
impl<'de> Deserialize<'de> for Spec
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Ord for Spec
impl Ord for Spec
source§impl PartialEq for Spec
impl PartialEq for Spec
source§impl PartialOrd for Spec
impl PartialOrd for Spec
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Spec
impl Eq for Spec
impl StructuralPartialEq for Spec
Auto Trait Implementations§
impl Freeze for Spec
impl RefUnwindSafe for Spec
impl Send for Spec
impl Sync for Spec
impl Unpin for Spec
impl UnwindSafe for Spec
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)