pub struct PlanSettings {
pub date_format: Option<DateFormat>,
pub currency_format: Option<CurrencyFormat>,
}Expand description
Date and currency format settings for a plan.
Fields§
§date_format: Option<DateFormat>§currency_format: Option<CurrencyFormat>Trait Implementations§
Source§impl Clone for PlanSettings
impl Clone for PlanSettings
Source§fn clone(&self) -> PlanSettings
fn clone(&self) -> PlanSettings
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 PlanSettings
impl Debug for PlanSettings
Source§impl<'de> Deserialize<'de> for PlanSettings
impl<'de> Deserialize<'de> for PlanSettings
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
Source§impl PartialEq for PlanSettings
impl PartialEq for PlanSettings
Source§impl Serialize for PlanSettings
impl Serialize for PlanSettings
impl StructuralPartialEq for PlanSettings
Auto Trait Implementations§
impl Freeze for PlanSettings
impl RefUnwindSafe for PlanSettings
impl Send for PlanSettings
impl Sync for PlanSettings
impl Unpin for PlanSettings
impl UnsafeUnpin for PlanSettings
impl UnwindSafe for PlanSettings
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