pub struct CapsulePush {
pub repo: String,
pub remote: String,
pub hash: String,
}Expand description
One push record referenced by a capsule.
Fields§
§repo: StringRepository name.
remote: StringRemote name or URL label.
hash: StringCommit hash that was pushed.
Trait Implementations§
Source§impl Clone for CapsulePush
impl Clone for CapsulePush
Source§fn clone(&self) -> CapsulePush
fn clone(&self) -> CapsulePush
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 CapsulePush
impl Debug for CapsulePush
impl Eq for CapsulePush
Source§impl PartialEq for CapsulePush
impl PartialEq for CapsulePush
Source§fn eq(&self, other: &CapsulePush) -> bool
fn eq(&self, other: &CapsulePush) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CapsulePush
Auto Trait Implementations§
impl Freeze for CapsulePush
impl RefUnwindSafe for CapsulePush
impl Send for CapsulePush
impl Sync for CapsulePush
impl Unpin for CapsulePush
impl UnsafeUnpin for CapsulePush
impl UnwindSafe for CapsulePush
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