pub struct RunProgressEvent {
pub event_type: RunProgressEventType,
pub surface_id: String,
pub thread_id: String,
pub request_id: String,
pub base_snapshot_version: u64,
pub offset: u64,
pub occurred_at: String,
pub data: RunProgressData,
}Fields§
§event_type: RunProgressEventType§surface_id: String§thread_id: String§request_id: String§base_snapshot_version: u64§offset: u64§occurred_at: String§data: RunProgressDataTrait Implementations§
Source§impl Clone for RunProgressEvent
impl Clone for RunProgressEvent
Source§fn clone(&self) -> RunProgressEvent
fn clone(&self) -> RunProgressEvent
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 moreSource§impl Debug for RunProgressEvent
impl Debug for RunProgressEvent
Source§impl<'de> Deserialize<'de> for RunProgressEvent
impl<'de> Deserialize<'de> for RunProgressEvent
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
impl Eq for RunProgressEvent
Source§impl PartialEq for RunProgressEvent
impl PartialEq for RunProgressEvent
Source§impl Serialize for RunProgressEvent
impl Serialize for RunProgressEvent
impl StructuralPartialEq for RunProgressEvent
Auto Trait Implementations§
impl Freeze for RunProgressEvent
impl RefUnwindSafe for RunProgressEvent
impl Send for RunProgressEvent
impl Sync for RunProgressEvent
impl Unpin for RunProgressEvent
impl UnsafeUnpin for RunProgressEvent
impl UnwindSafe for RunProgressEvent
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