pub struct PlaceOrderStatisticsSnapshot {
pub order_id: String,
pub total_cost_ms: f32,
pub open_d_cost_ms: f32,
pub net_delay_ms: f32,
pub update_cost_ms: f32,
}Fields§
§order_id: String§total_cost_ms: f32§open_d_cost_ms: f32§net_delay_ms: f32§update_cost_ms: f32Trait Implementations§
Source§impl Clone for PlaceOrderStatisticsSnapshot
impl Clone for PlaceOrderStatisticsSnapshot
Source§fn clone(&self) -> PlaceOrderStatisticsSnapshot
fn clone(&self) -> PlaceOrderStatisticsSnapshot
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 PlaceOrderStatisticsSnapshot
impl Debug for PlaceOrderStatisticsSnapshot
Source§impl PartialEq for PlaceOrderStatisticsSnapshot
impl PartialEq for PlaceOrderStatisticsSnapshot
Source§fn eq(&self, other: &PlaceOrderStatisticsSnapshot) -> bool
fn eq(&self, other: &PlaceOrderStatisticsSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaceOrderStatisticsSnapshot
Auto Trait Implementations§
impl Freeze for PlaceOrderStatisticsSnapshot
impl RefUnwindSafe for PlaceOrderStatisticsSnapshot
impl Send for PlaceOrderStatisticsSnapshot
impl Sync for PlaceOrderStatisticsSnapshot
impl Unpin for PlaceOrderStatisticsSnapshot
impl UnsafeUnpin for PlaceOrderStatisticsSnapshot
impl UnwindSafe for PlaceOrderStatisticsSnapshot
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