pub struct StagedTopic {
pub merge: CommitId,
pub topic: Topic,
}
Expand description
A topic branch which has been staged.
Fields§
§merge: CommitId
The commit where the topic branch has been merged into the staging branch.
topic: Topic
The topic branch.
Implementations§
Trait Implementations§
Source§impl Clone for StagedTopic
impl Clone for StagedTopic
Source§fn clone(&self) -> StagedTopic
fn clone(&self) -> StagedTopic
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StagedTopic
impl Debug for StagedTopic
Source§impl Display for StagedTopic
impl Display for StagedTopic
Source§impl PartialEq for StagedTopic
impl PartialEq for StagedTopic
impl StructuralPartialEq for StagedTopic
Auto Trait Implementations§
impl Freeze for StagedTopic
impl RefUnwindSafe for StagedTopic
impl Send for StagedTopic
impl Sync for StagedTopic
impl Unpin for StagedTopic
impl UnwindSafe for StagedTopic
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