pub struct ProjectLimitsResponse {
pub can_deploy: Option<bool>,
pub can_add_certificate: Option<bool>,
pub full_telemetry_enabled: Option<bool>,
pub max_compute_tier: Option<ComputeTier>,
}Fields§
§can_deploy: Option<bool>Whether this project can be deployed or redeployed
can_add_certificate: Option<bool>Whether a custom domain can be added
full_telemetry_enabled: Option<bool>Whether upgraded telemetry is enabled for new deployments
max_compute_tier: Option<ComputeTier>Highest instance size available for this project
Trait Implementations§
Source§impl Clone for ProjectLimitsResponse
impl Clone for ProjectLimitsResponse
Source§fn clone(&self) -> ProjectLimitsResponse
fn clone(&self) -> ProjectLimitsResponse
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 ProjectLimitsResponse
impl Debug for ProjectLimitsResponse
Source§impl<'de> Deserialize<'de> for ProjectLimitsResponse
impl<'de> Deserialize<'de> for ProjectLimitsResponse
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 ProjectLimitsResponse
impl RefUnwindSafe for ProjectLimitsResponse
impl Send for ProjectLimitsResponse
impl Sync for ProjectLimitsResponse
impl Unpin for ProjectLimitsResponse
impl UnwindSafe for ProjectLimitsResponse
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