pub struct PlanMilestone {
pub title: String,
pub features: Vec<PlanFeature>,
}Fields§
§title: String§features: Vec<PlanFeature>Trait Implementations§
Source§impl Clone for PlanMilestone
impl Clone for PlanMilestone
Source§fn clone(&self) -> PlanMilestone
fn clone(&self) -> PlanMilestone
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlanMilestone
impl Debug for PlanMilestone
Source§impl<'de> Deserialize<'de> for PlanMilestone
impl<'de> Deserialize<'de> for PlanMilestone
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 PlanMilestone
impl RefUnwindSafe for PlanMilestone
impl Send for PlanMilestone
impl Sync for PlanMilestone
impl Unpin for PlanMilestone
impl UnsafeUnpin for PlanMilestone
impl UnwindSafe for PlanMilestone
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