pub struct TimedRegionState {
pub active: bool,
pub completed: bool,
pub started_at_ms: f64,
pub duration_ms: f64,
}Fields§
§active: bool§completed: bool§started_at_ms: f64§duration_ms: f64Trait Implementations§
Source§impl Clone for TimedRegionState
impl Clone for TimedRegionState
Source§fn clone(&self) -> TimedRegionState
fn clone(&self) -> TimedRegionState
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 TimedRegionState
impl Debug for TimedRegionState
Source§impl Default for TimedRegionState
impl Default for TimedRegionState
Source§impl<'de> Deserialize<'de> for TimedRegionState
impl<'de> Deserialize<'de> for TimedRegionState
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
Source§impl PartialEq for TimedRegionState
impl PartialEq for TimedRegionState
Source§impl Serialize for TimedRegionState
impl Serialize for TimedRegionState
impl StructuralPartialEq for TimedRegionState
Auto Trait Implementations§
impl Freeze for TimedRegionState
impl RefUnwindSafe for TimedRegionState
impl Send for TimedRegionState
impl Sync for TimedRegionState
impl Unpin for TimedRegionState
impl UnsafeUnpin for TimedRegionState
impl UnwindSafe for TimedRegionState
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