pub struct AccountLimitsResponse {
pub projects_count: Option<u32>,
pub projects_limit: Option<u32>,
pub active_projects_count: Option<u32>,
pub active_projects_limit: Option<u32>,
pub certificate_count: Option<u32>,
pub certificate_limit: Option<u32>,
}Fields§
§projects_count: Option<u32>Number of projects the user currently has
projects_limit: Option<u32>Number of projects the user may have total
active_projects_count: Option<u32>Number of active projects the user currently has
active_projects_limit: Option<u32>Number of projects the user may have active at once
certificate_count: Option<u32>Number of custom domains the user currently has
certificate_limit: Option<u32>Number of custom domains the user may have total
Trait Implementations§
Source§impl Clone for AccountLimitsResponse
impl Clone for AccountLimitsResponse
Source§fn clone(&self) -> AccountLimitsResponse
fn clone(&self) -> AccountLimitsResponse
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 AccountLimitsResponse
impl Debug for AccountLimitsResponse
Source§impl<'de> Deserialize<'de> for AccountLimitsResponse
impl<'de> Deserialize<'de> for AccountLimitsResponse
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 AccountLimitsResponse
impl RefUnwindSafe for AccountLimitsResponse
impl Send for AccountLimitsResponse
impl Sync for AccountLimitsResponse
impl Unpin for AccountLimitsResponse
impl UnwindSafe for AccountLimitsResponse
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