pub struct FollowUpConfig {
pub default_mode: String,
pub auto_supersede: bool,
pub rebase_on_apply: bool,
}Expand description
Follow-up goal behavior configuration
Fields§
§default_mode: StringDefault mode for –follow-up: “extend” reuses parent staging, “standalone” creates fresh copy.
auto_supersede: boolAuto-supersede parent draft when building from same staging directory.
rebase_on_apply: boolRe-snapshot source before applying when source has changed since goal start.
Trait Implementations§
Source§impl Clone for FollowUpConfig
impl Clone for FollowUpConfig
Source§fn clone(&self) -> FollowUpConfig
fn clone(&self) -> FollowUpConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 FollowUpConfig
impl Debug for FollowUpConfig
Source§impl Default for FollowUpConfig
impl Default for FollowUpConfig
Source§impl<'de> Deserialize<'de> for FollowUpConfig
impl<'de> Deserialize<'de> for FollowUpConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FollowUpConfig
impl RefUnwindSafe for FollowUpConfig
impl Send for FollowUpConfig
impl Sync for FollowUpConfig
impl Unpin for FollowUpConfig
impl UnsafeUnpin for FollowUpConfig
impl UnwindSafe for FollowUpConfig
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