pub struct RefUpdate {
pub name: String,
pub target: Option<String>,
pub peeled: Option<String>,
pub symref_target: Option<String>,
}Expand description
One ref update inside a push. Owned by the git-storage-trait contract;
re-exported here so crate::refs::RefUpdate stays a valid path.
One ref update in a push.
Fields§
§name: String§target: Option<String>§peeled: Option<String>§symref_target: Option<String>Implementations§
Source§impl RefUpdate
impl RefUpdate
Sourcepub fn set(name: impl Into<String>, target: impl Into<String>) -> RefUpdate
pub fn set(name: impl Into<String>, target: impl Into<String>) -> RefUpdate
Set name to target.
Sourcepub fn symbolic(
name: impl Into<String>,
points_to: impl Into<String>,
) -> RefUpdate
pub fn symbolic( name: impl Into<String>, points_to: impl Into<String>, ) -> RefUpdate
Point the symbolic ref name at points_to.
Sourcepub fn with_peeled(self, peeled: impl Into<String>) -> RefUpdate
pub fn with_peeled(self, peeled: impl Into<String>) -> RefUpdate
Attach the peeled target of an annotated tag.
Trait Implementations§
impl Eq for RefUpdate
impl StructuralPartialEq for RefUpdate
Auto Trait Implementations§
impl Freeze for RefUpdate
impl RefUnwindSafe for RefUpdate
impl Send for RefUpdate
impl Sync for RefUpdate
impl Unpin for RefUpdate
impl UnsafeUnpin for RefUpdate
impl UnwindSafe for RefUpdate
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.