pub struct ToolTimeRange {
pub start: i64,
pub end: i64,
pub compacted: Option<i64>,
}Expand description
Tool execution time range.
Fields§
§start: i64Start timestamp (ms).
end: i64End timestamp (ms).
compacted: Option<i64>Compacted timestamp if applicable.
Trait Implementations§
Source§impl Clone for ToolTimeRange
impl Clone for ToolTimeRange
Source§fn clone(&self) -> ToolTimeRange
fn clone(&self) -> ToolTimeRange
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 ToolTimeRange
impl Debug for ToolTimeRange
Source§impl<'de> Deserialize<'de> for ToolTimeRange
impl<'de> Deserialize<'de> for ToolTimeRange
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
Auto Trait Implementations§
impl Freeze for ToolTimeRange
impl RefUnwindSafe for ToolTimeRange
impl Send for ToolTimeRange
impl Sync for ToolTimeRange
impl Unpin for ToolTimeRange
impl UnwindSafe for ToolTimeRange
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