pub struct FreePackPlanPricing {
pub type_: FreePackPlanPricingType,
}
Expand description
Pricing used when workspaces can subscribe to the Pack for free.
JSON schema
{
"description": "Pricing used when workspaces can subscribe to the Pack
for free.",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"Free"
],
"x-tsType": "PackPlanPricingType.Free"
}
},
"additionalProperties": false,
"x-schema-name": "FreePackPlanPricing"
}
Fields§
§type_: FreePackPlanPricingType
Trait Implementations§
Source§impl Clone for FreePackPlanPricing
impl Clone for FreePackPlanPricing
Source§fn clone(&self) -> FreePackPlanPricing
fn clone(&self) -> FreePackPlanPricing
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 FreePackPlanPricing
impl Debug for FreePackPlanPricing
Source§impl<'de> Deserialize<'de> for FreePackPlanPricing
impl<'de> Deserialize<'de> for FreePackPlanPricing
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<&FreePackPlanPricing> for FreePackPlanPricing
impl From<&FreePackPlanPricing> for FreePackPlanPricing
Source§fn from(value: &FreePackPlanPricing) -> Self
fn from(value: &FreePackPlanPricing) -> 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.
Auto Trait Implementations§
impl Freeze for FreePackPlanPricing
impl RefUnwindSafe for FreePackPlanPricing
impl Send for FreePackPlanPricing
impl Sync for FreePackPlanPricing
impl Unpin for FreePackPlanPricing
impl UnwindSafe for FreePackPlanPricing
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