pub struct BurstCapacityExceeded {
pub cost: u32,
pub capacity: u32,
pub tier: Tier,
pub bucket: TradingBucket,
}Expand description
A request whose token cost exceeds its bucket’s capacity.
This is not a throttle. A token bucket never holds more than its burst capacity, so a request costing more can never be satisfied no matter how long the caller waits. Splitting the batch is the only remedy, which is why this is a distinct error rather than a 429 the retry loop would burn attempts on.
Fields§
§cost: u32Tokens the request would cost.
capacity: u32The bucket’s maximum capacity at the current tier.
tier: TierTier in force when the request was rejected.
bucket: TradingBucketWhich bucket the request draws from.
Trait Implementations§
Source§impl Clone for BurstCapacityExceeded
impl Clone for BurstCapacityExceeded
Source§fn clone(&self) -> BurstCapacityExceeded
fn clone(&self) -> BurstCapacityExceeded
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BurstCapacityExceeded
Source§impl Debug for BurstCapacityExceeded
impl Debug for BurstCapacityExceeded
Source§impl Display for BurstCapacityExceeded
impl Display for BurstCapacityExceeded
impl Eq for BurstCapacityExceeded
Source§impl Error for BurstCapacityExceeded
impl Error for BurstCapacityExceeded
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for BurstCapacityExceeded
impl PartialEq for BurstCapacityExceeded
impl StructuralPartialEq for BurstCapacityExceeded
Auto Trait Implementations§
impl Freeze for BurstCapacityExceeded
impl RefUnwindSafe for BurstCapacityExceeded
impl Send for BurstCapacityExceeded
impl Sync for BurstCapacityExceeded
impl Unpin for BurstCapacityExceeded
impl UnsafeUnpin for BurstCapacityExceeded
impl UnwindSafe for BurstCapacityExceeded
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.