pub struct RealtimeServerEventRateLimitsUpdated {
pub event_id: String,
pub type: String,
pub rate_limits: Vec<RealtimeServerEventRateLimitsUpdated_RateLimits>,
}
Expand description
Emitted at the beginning of a Response to indicate the updated rate limits.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be rate_limits.updated
.
rate_limits: Vec<RealtimeServerEventRateLimitsUpdated_RateLimits>
List of rate limit information.
Trait Implementations§
Source§impl Clone for RealtimeServerEventRateLimitsUpdated
impl Clone for RealtimeServerEventRateLimitsUpdated
Source§fn clone(&self) -> RealtimeServerEventRateLimitsUpdated
fn clone(&self) -> RealtimeServerEventRateLimitsUpdated
Returns a copy 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 Default for RealtimeServerEventRateLimitsUpdated
impl Default for RealtimeServerEventRateLimitsUpdated
Source§fn default() -> RealtimeServerEventRateLimitsUpdated
fn default() -> RealtimeServerEventRateLimitsUpdated
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeServerEventRateLimitsUpdated
impl RefUnwindSafe for RealtimeServerEventRateLimitsUpdated
impl Send for RealtimeServerEventRateLimitsUpdated
impl Sync for RealtimeServerEventRateLimitsUpdated
impl Unpin for RealtimeServerEventRateLimitsUpdated
impl UnwindSafe for RealtimeServerEventRateLimitsUpdated
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