pub struct SetPublicAppRateLimitRequest {
pub public_app_execution_limit_per_minute: Option<i32>,
}Fields§
§public_app_execution_limit_per_minute: Option<i32>Rate limit for public app executions per minute per server. NULL or 0 to disable.
Implementations§
Source§impl SetPublicAppRateLimitRequest
impl SetPublicAppRateLimitRequest
pub fn new() -> SetPublicAppRateLimitRequest
Trait Implementations§
Source§impl Clone for SetPublicAppRateLimitRequest
impl Clone for SetPublicAppRateLimitRequest
Source§fn clone(&self) -> SetPublicAppRateLimitRequest
fn clone(&self) -> SetPublicAppRateLimitRequest
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 SetPublicAppRateLimitRequest
impl Debug for SetPublicAppRateLimitRequest
Source§impl Default for SetPublicAppRateLimitRequest
impl Default for SetPublicAppRateLimitRequest
Source§fn default() -> SetPublicAppRateLimitRequest
fn default() -> SetPublicAppRateLimitRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetPublicAppRateLimitRequest
impl<'de> Deserialize<'de> for SetPublicAppRateLimitRequest
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 for SetPublicAppRateLimitRequest
impl PartialEq for SetPublicAppRateLimitRequest
Source§fn eq(&self, other: &SetPublicAppRateLimitRequest) -> bool
fn eq(&self, other: &SetPublicAppRateLimitRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetPublicAppRateLimitRequest
Auto Trait Implementations§
impl Freeze for SetPublicAppRateLimitRequest
impl RefUnwindSafe for SetPublicAppRateLimitRequest
impl Send for SetPublicAppRateLimitRequest
impl Sync for SetPublicAppRateLimitRequest
impl Unpin for SetPublicAppRateLimitRequest
impl UnwindSafe for SetPublicAppRateLimitRequest
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