pub struct RateLimitEvent {
pub rate_limit_info: Option<Value>,
pub uuid: Option<String>,
pub session_id: Option<String>,
}Expand description
Rate limit status information emitted by the CLI.
Fields§
§rate_limit_info: Option<Value>Rate limit status details.
uuid: Option<String>Session-unique identifier.
session_id: Option<String>The session ID.
Trait Implementations§
Source§impl Clone for RateLimitEvent
impl Clone for RateLimitEvent
Source§fn clone(&self) -> RateLimitEvent
fn clone(&self) -> RateLimitEvent
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 RateLimitEvent
impl Debug for RateLimitEvent
Source§impl<'de> Deserialize<'de> for RateLimitEvent
impl<'de> Deserialize<'de> for RateLimitEvent
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
Auto Trait Implementations§
impl Freeze for RateLimitEvent
impl RefUnwindSafe for RateLimitEvent
impl Send for RateLimitEvent
impl Sync for RateLimitEvent
impl Unpin for RateLimitEvent
impl UnsafeUnpin for RateLimitEvent
impl UnwindSafe for RateLimitEvent
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