pub struct ProcReceiveReport {
pub refname: Option<String>,
pub old_oid: Option<ObjectId>,
pub new_oid: Option<ObjectId>,
pub forced_update: bool,
}Expand description
Per-command proc-receive state carried through receive-pack execution.
Fields§
§refname: Option<String>§old_oid: Option<ObjectId>§new_oid: Option<ObjectId>§forced_update: boolTrait Implementations§
Source§impl Clone for ProcReceiveReport
impl Clone for ProcReceiveReport
Source§fn clone(&self) -> ProcReceiveReport
fn clone(&self) -> ProcReceiveReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcReceiveReport
impl Debug for ProcReceiveReport
impl Eq for ProcReceiveReport
Source§impl PartialEq for ProcReceiveReport
impl PartialEq for ProcReceiveReport
impl StructuralPartialEq for ProcReceiveReport
Auto Trait Implementations§
impl Freeze for ProcReceiveReport
impl RefUnwindSafe for ProcReceiveReport
impl Send for ProcReceiveReport
impl Sync for ProcReceiveReport
impl Unpin for ProcReceiveReport
impl UnsafeUnpin for ProcReceiveReport
impl UnwindSafe for ProcReceiveReport
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