pub struct PlanFeature {
pub title: String,
pub spec: String,
pub validation_criteria: Vec<String>,
}Fields§
§title: String§spec: StringWhat to build.
validation_criteria: Vec<String>How we know it’s done.
Trait Implementations§
Source§impl Clone for PlanFeature
impl Clone for PlanFeature
Source§impl Debug for PlanFeature
impl Debug for PlanFeature
Source§impl<'de> Deserialize<'de> for PlanFeature
impl<'de> Deserialize<'de> for PlanFeature
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 PlanFeature
impl RefUnwindSafe for PlanFeature
impl Send for PlanFeature
impl Sync for PlanFeature
impl Unpin for PlanFeature
impl UnsafeUnpin for PlanFeature
impl UnwindSafe for PlanFeature
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