pub struct CandidateTopic {
pub old_id: Option<Topic>,
pub new_id: Topic,
}
Expand description
A topic branch which should be integrated into the stage.
Fields§
§old_id: Option<Topic>
The old revision for the topic (if available).
new_id: Topic
The new revision for the topic.
Trait Implementations§
Source§impl Clone for CandidateTopic
impl Clone for CandidateTopic
Source§fn clone(&self) -> CandidateTopic
fn clone(&self) -> CandidateTopic
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 CandidateTopic
impl Debug for CandidateTopic
Source§impl Display for CandidateTopic
impl Display for CandidateTopic
Source§impl PartialEq for CandidateTopic
impl PartialEq for CandidateTopic
impl StructuralPartialEq for CandidateTopic
Auto Trait Implementations§
impl Freeze for CandidateTopic
impl RefUnwindSafe for CandidateTopic
impl Send for CandidateTopic
impl Sync for CandidateTopic
impl Unpin for CandidateTopic
impl UnwindSafe for CandidateTopic
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