pub struct BillingResponse {
pub created_at: u64,
pub env: String,
pub features: HashMap<String, Feature>,
pub id: String,
pub name: String,
pub products: Vec<Product>,
pub stripe_id: Option<String>,
}Fields§
§created_at: u64§env: String§features: HashMap<String, Feature>§id: String§name: String§products: Vec<Product>§stripe_id: Option<String>Trait Implementations§
Source§impl Clone for BillingResponse
impl Clone for BillingResponse
Source§fn clone(&self) -> BillingResponse
fn clone(&self) -> BillingResponse
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 BillingResponse
impl Debug for BillingResponse
Source§impl<'de> Deserialize<'de> for BillingResponse
impl<'de> Deserialize<'de> for BillingResponse
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
Auto Trait Implementations§
impl Freeze for BillingResponse
impl RefUnwindSafe for BillingResponse
impl Send for BillingResponse
impl Sync for BillingResponse
impl Unpin for BillingResponse
impl UnwindSafe for BillingResponse
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