pub struct UpdateProjectRateLimitsParams {
pub project_id: String,
pub rate_limit_id: String,
}
Fields§
§project_id: String
The ID of the project.
rate_limit_id: String
The ID of the rate limit.
Implementations§
Source§impl UpdateProjectRateLimitsParams
impl UpdateProjectRateLimitsParams
Sourcepub fn builder() -> UpdateProjectRateLimitsParamsBuilder<((), ())>
pub fn builder() -> UpdateProjectRateLimitsParamsBuilder<((), ())>
Create a builder for building UpdateProjectRateLimitsParams
.
On the builder, call .project_id(...)
, .rate_limit_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of UpdateProjectRateLimitsParams
.
Trait Implementations§
Source§impl Clone for UpdateProjectRateLimitsParams
impl Clone for UpdateProjectRateLimitsParams
Source§fn clone(&self) -> UpdateProjectRateLimitsParams
fn clone(&self) -> UpdateProjectRateLimitsParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for UpdateProjectRateLimitsParams
impl<'de> Deserialize<'de> for UpdateProjectRateLimitsParams
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 UpdateProjectRateLimitsParams
impl PartialEq for UpdateProjectRateLimitsParams
Source§fn eq(&self, other: &UpdateProjectRateLimitsParams) -> bool
fn eq(&self, other: &UpdateProjectRateLimitsParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateProjectRateLimitsParams
Auto Trait Implementations§
impl Freeze for UpdateProjectRateLimitsParams
impl RefUnwindSafe for UpdateProjectRateLimitsParams
impl Send for UpdateProjectRateLimitsParams
impl Sync for UpdateProjectRateLimitsParams
impl Unpin for UpdateProjectRateLimitsParams
impl UnwindSafe for UpdateProjectRateLimitsParams
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