pub struct CADSPricing {
pub model: Option<CADSPricingModel>,
pub currency: Option<String>,
pub unit_cost: Option<f64>,
pub billing_unit: Option<String>,
pub notes: Option<String>,
}Expand description
CADS pricing model
Fields§
§model: Option<CADSPricingModel>Pricing model type
currency: Option<String>Currency code
unit_cost: Option<f64>Unit cost
billing_unit: Option<String>Billing unit
notes: Option<String>Additional notes
Trait Implementations§
Source§impl Clone for CADSPricing
impl Clone for CADSPricing
Source§fn clone(&self) -> CADSPricing
fn clone(&self) -> CADSPricing
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 CADSPricing
impl Debug for CADSPricing
Source§impl<'de> Deserialize<'de> for CADSPricing
impl<'de> Deserialize<'de> for CADSPricing
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 CADSPricing
impl PartialEq for CADSPricing
Source§impl Serialize for CADSPricing
impl Serialize for CADSPricing
impl StructuralPartialEq for CADSPricing
Auto Trait Implementations§
impl Freeze for CADSPricing
impl RefUnwindSafe for CADSPricing
impl Send for CADSPricing
impl Sync for CADSPricing
impl Unpin for CADSPricing
impl UnwindSafe for CADSPricing
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