pub struct MergeEntry {
pub ts: String,
pub event_id: String,
pub src: String,
pub dst: String,
pub reason: String,
pub adopted_commits: Vec<String>,
}Fields§
§ts: String§event_id: String§src: String§dst: String§reason: String§adopted_commits: Vec<String>Trait Implementations§
Source§impl Clone for MergeEntry
impl Clone for MergeEntry
Source§fn clone(&self) -> MergeEntry
fn clone(&self) -> MergeEntry
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 moreAuto Trait Implementations§
impl Freeze for MergeEntry
impl RefUnwindSafe for MergeEntry
impl Send for MergeEntry
impl Sync for MergeEntry
impl Unpin for MergeEntry
impl UnsafeUnpin for MergeEntry
impl UnwindSafe for MergeEntry
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