pub enum StandardPackPlanPricing {
FreePackPlanPricing(FreePackPlanPricing),
MonthlyDocMakerPackPlanPricing(MonthlyDocMakerPackPlanPricing),
}
Expand description
Pricing to show how workspaces can subscribe to the Pack.
JSON schema
{
"description": "Pricing to show how workspaces can subscribe to the
Pack.",
"oneOf": [
{
"$ref": "#/components/schemas/FreePackPlanPricing"
},
{
"$ref": "#/components/schemas/MonthlyDocMakerPackPlanPricing"
}
]
}
Variants§
FreePackPlanPricing(FreePackPlanPricing)
MonthlyDocMakerPackPlanPricing(MonthlyDocMakerPackPlanPricing)
Trait Implementations§
Source§impl Clone for StandardPackPlanPricing
impl Clone for StandardPackPlanPricing
Source§fn clone(&self) -> StandardPackPlanPricing
fn clone(&self) -> StandardPackPlanPricing
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 StandardPackPlanPricing
impl Debug for StandardPackPlanPricing
Source§impl<'de> Deserialize<'de> for StandardPackPlanPricing
impl<'de> Deserialize<'de> for StandardPackPlanPricing
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 From<&StandardPackPlanPricing> for StandardPackPlanPricing
impl From<&StandardPackPlanPricing> for StandardPackPlanPricing
Source§fn from(value: &StandardPackPlanPricing) -> Self
fn from(value: &StandardPackPlanPricing) -> Self
Converts to this type from the input type.
Source§impl From<FreePackPlanPricing> for StandardPackPlanPricing
impl From<FreePackPlanPricing> for StandardPackPlanPricing
Source§fn from(value: FreePackPlanPricing) -> Self
fn from(value: FreePackPlanPricing) -> Self
Converts to this type from the input type.
Source§impl From<MonthlyDocMakerPackPlanPricing> for StandardPackPlanPricing
impl From<MonthlyDocMakerPackPlanPricing> for StandardPackPlanPricing
Source§fn from(value: MonthlyDocMakerPackPlanPricing) -> Self
fn from(value: MonthlyDocMakerPackPlanPricing) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StandardPackPlanPricing
impl RefUnwindSafe for StandardPackPlanPricing
impl Send for StandardPackPlanPricing
impl Sync for StandardPackPlanPricing
impl Unpin for StandardPackPlanPricing
impl UnwindSafe for StandardPackPlanPricing
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