pub struct Unthrottle {
pub record_id: Option<RecordId>,
pub time: u64,
pub id: u64,
pub stream_id: u64,
}
Expand description
Sampling throttle has been lifted.
Fields§
§record_id: Option<RecordId>
Record IDs.
time: u64
Timestamp.
id: u64
Event ID.
stream_id: u64
Event stream ID.
Trait Implementations§
Source§impl Clone for Unthrottle
impl Clone for Unthrottle
Source§fn clone(&self) -> Unthrottle
fn clone(&self) -> Unthrottle
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 moreAuto Trait Implementations§
impl Freeze for Unthrottle
impl RefUnwindSafe for Unthrottle
impl Send for Unthrottle
impl Sync for Unthrottle
impl Unpin for Unthrottle
impl UnwindSafe for Unthrottle
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