pub struct PlanConfig {
pub file: String,
}Expand description
Plan file configuration (v0.14.12).
Allows projects to name their plan file something other than PLAN.md.
[plan]
file = "ROADMAP.md"Fields§
§file: StringName of the plan file relative to workspace root. Default: “PLAN.md”.
Trait Implementations§
Source§impl Clone for PlanConfig
impl Clone for PlanConfig
Source§fn clone(&self) -> PlanConfig
fn clone(&self) -> PlanConfig
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 PlanConfig
impl Debug for PlanConfig
Source§impl Default for PlanConfig
impl Default for PlanConfig
Source§impl<'de> Deserialize<'de> for PlanConfig
impl<'de> Deserialize<'de> for PlanConfig
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 PlanConfig
impl RefUnwindSafe for PlanConfig
impl Send for PlanConfig
impl Sync for PlanConfig
impl Unpin for PlanConfig
impl UnsafeUnpin for PlanConfig
impl UnwindSafe for PlanConfig
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