pub struct BlackRange {
pub start_us: i64,
pub end_us: i64,
}Expand description
A detected black region, in microseconds.
Fields§
§start_us: i64§end_us: i64Trait Implementations§
Source§impl Clone for BlackRange
impl Clone for BlackRange
Source§fn clone(&self) -> BlackRange
fn clone(&self) -> BlackRange
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 moreimpl Copy for BlackRange
Source§impl Debug for BlackRange
impl Debug for BlackRange
Source§impl PartialEq for BlackRange
impl PartialEq for BlackRange
Source§fn eq(&self, other: &BlackRange) -> bool
fn eq(&self, other: &BlackRange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlackRange
Auto Trait Implementations§
impl Freeze for BlackRange
impl RefUnwindSafe for BlackRange
impl Send for BlackRange
impl Sync for BlackRange
impl Unpin for BlackRange
impl UnsafeUnpin for BlackRange
impl UnwindSafe for BlackRange
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