pub struct AuditLogRateLimitUpdated {
pub id: Option<String>,
pub changes_requested: Option<AuditLogRateLimitUpdatedChangesRequested>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The rate limit ID
changes_requested: Option<AuditLogRateLimitUpdatedChangesRequested>
The payload used to update the rate limits.
Implementations§
Source§impl AuditLogRateLimitUpdated
impl AuditLogRateLimitUpdated
Sourcepub fn builder() -> AuditLogRateLimitUpdatedBuilder<((), ())>
pub fn builder() -> AuditLogRateLimitUpdatedBuilder<((), ())>
Create a builder for building AuditLogRateLimitUpdated
.
On the builder, call .id(...)
(optional), .changes_requested(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogRateLimitUpdated
.
Trait Implementations§
Source§impl Clone for AuditLogRateLimitUpdated
impl Clone for AuditLogRateLimitUpdated
Source§fn clone(&self) -> AuditLogRateLimitUpdated
fn clone(&self) -> AuditLogRateLimitUpdated
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 Debug for AuditLogRateLimitUpdated
impl Debug for AuditLogRateLimitUpdated
Source§impl Default for AuditLogRateLimitUpdated
impl Default for AuditLogRateLimitUpdated
Source§fn default() -> AuditLogRateLimitUpdated
fn default() -> AuditLogRateLimitUpdated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogRateLimitUpdated
impl<'de> Deserialize<'de> for AuditLogRateLimitUpdated
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 AuditLogRateLimitUpdated
impl PartialEq for AuditLogRateLimitUpdated
Source§fn eq(&self, other: &AuditLogRateLimitUpdated) -> bool
fn eq(&self, other: &AuditLogRateLimitUpdated) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for AuditLogRateLimitUpdated
impl Serialize for AuditLogRateLimitUpdated
impl StructuralPartialEq for AuditLogRateLimitUpdated
Auto Trait Implementations§
impl Freeze for AuditLogRateLimitUpdated
impl RefUnwindSafe for AuditLogRateLimitUpdated
impl Send for AuditLogRateLimitUpdated
impl Sync for AuditLogRateLimitUpdated
impl Unpin for AuditLogRateLimitUpdated
impl UnwindSafe for AuditLogRateLimitUpdated
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