pub struct PlanVersion {
pub version_id: String,
pub creation_date: DateTime<Utc>,
pub deletion_date: Option<DateTime<Utc>>,
pub plan_name: String,
}Fields§
§version_id: String§creation_date: DateTime<Utc>§deletion_date: Option<DateTime<Utc>>§plan_name: StringTrait Implementations§
Source§impl Clone for PlanVersion
impl Clone for PlanVersion
Source§fn clone(&self) -> PlanVersion
fn clone(&self) -> PlanVersion
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 PlanVersion
impl Debug for PlanVersion
Source§impl<'de> Deserialize<'de> for PlanVersion
impl<'de> Deserialize<'de> for PlanVersion
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 PlanVersion
impl RefUnwindSafe for PlanVersion
impl Send for PlanVersion
impl Sync for PlanVersion
impl Unpin for PlanVersion
impl UnsafeUnpin for PlanVersion
impl UnwindSafe for PlanVersion
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