[][src]Struct aiven_rs::project::types::Project

pub struct Project {
    pub account_id: Option<String>,
    pub available_credits: String,
    pub billing_address: String,
    pub billing_currency: String,
    pub billing_emails: Vec<Email>,
    pub billing_extra_text: Option<String>,
    pub card_info: CardInfo,
    pub country: String,
    pub country_code: String,
    pub default_cloud: String,
    pub estimated_balance: String,
    pub features: Option<Value>,
    pub payment_method: String,
    pub project_name: String,
    pub tech_emails: Vec<Email>,
    pub tenant_id: String,
    pub trial_expiration_time: Option<String>,
    pub vat_id: String,
}

Fields

account_id: Option<String>available_credits: Stringbilling_address: Stringbilling_currency: Stringbilling_emails: Vec<Email>billing_extra_text: Option<String>card_info: CardInfocountry: Stringcountry_code: Stringdefault_cloud: Stringestimated_balance: Stringfeatures: Option<Value>payment_method: Stringproject_name: Stringtech_emails: Vec<Email>tenant_id: Stringtrial_expiration_time: Option<String>vat_id: String

Trait Implementations

impl Debug for Project[src]

impl Default for Project[src]

impl<'de> Deserialize<'de> for Project[src]

impl Serialize for Project[src]

Auto Trait Implementations

impl RefUnwindSafe for Project

impl Send for Project

impl Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,