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§fn clone_from(&mut self, source: &Self)
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§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