pub enum PreflightOverflow {
Ok {
estimated: u32,
},
Overflow {
estimated: u32,
window: u32,
limit: u32,
},
}Expand description
Preflight decision before sampling.
Variants§
Trait Implementations§
Source§impl Clone for PreflightOverflow
impl Clone for PreflightOverflow
Source§fn clone(&self) -> PreflightOverflow
fn clone(&self) -> PreflightOverflow
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 PreflightOverflow
Source§impl Debug for PreflightOverflow
impl Debug for PreflightOverflow
impl Eq for PreflightOverflow
Source§impl PartialEq for PreflightOverflow
impl PartialEq for PreflightOverflow
impl StructuralPartialEq for PreflightOverflow
Auto Trait Implementations§
impl Freeze for PreflightOverflow
impl RefUnwindSafe for PreflightOverflow
impl Send for PreflightOverflow
impl Sync for PreflightOverflow
impl Unpin for PreflightOverflow
impl UnsafeUnpin for PreflightOverflow
impl UnwindSafe for PreflightOverflow
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