Struct github_rest::model::misc::deployments::nested::MarketplacePlan
source · pub struct MarketplacePlan {
pub id: usize,
pub name: String,
pub description: String,
pub monthly_price_in_cents: usize,
pub yearly_price_in_cents: usize,
pub price_model: MarketplacePriceModel,
pub has_free_trial: bool,
pub unit_name: String,
pub bullet: Vec<String>,
}
Fields§
§id: usize
§name: String
§description: String
§monthly_price_in_cents: usize
§yearly_price_in_cents: usize
§price_model: MarketplacePriceModel
§has_free_trial: bool
§unit_name: String
§bullet: Vec<String>
Trait Implementations§
source§impl Clone for MarketplacePlan
impl Clone for MarketplacePlan
source§fn clone(&self) -> MarketplacePlan
fn clone(&self) -> MarketplacePlan
Returns a copy 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 MarketplacePlan
impl Debug for MarketplacePlan
source§impl<'de> Deserialize<'de> for MarketplacePlan
impl<'de> Deserialize<'de> for MarketplacePlan
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<MarketplacePlan> for MarketplacePlan
impl PartialEq<MarketplacePlan> for MarketplacePlan
source§fn eq(&self, other: &MarketplacePlan) -> bool
fn eq(&self, other: &MarketplacePlan) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MarketplacePlan
impl Serialize for MarketplacePlan
impl StructuralPartialEq for MarketplacePlan
Auto Trait Implementations§
impl RefUnwindSafe for MarketplacePlan
impl Send for MarketplacePlan
impl Sync for MarketplacePlan
impl Unpin for MarketplacePlan
impl UnwindSafe for MarketplacePlan
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