pub struct SegmentComplexity {
pub start: Duration,
pub end: Duration,
pub duration: Duration,
pub avg_spatial: f64,
pub avg_temporal: f64,
pub max_spatial: f64,
pub max_temporal: f64,
pub score: f64,
}Fields§
§start: Duration§end: Duration§duration: Duration§avg_spatial: f64§avg_temporal: f64§max_spatial: f64§max_temporal: f64§score: f64Trait Implementations§
Source§impl Clone for SegmentComplexity
impl Clone for SegmentComplexity
Source§fn clone(&self) -> SegmentComplexity
fn clone(&self) -> SegmentComplexity
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 SegmentComplexity
impl Debug for SegmentComplexity
Source§impl<'de> Deserialize<'de> for SegmentComplexity
impl<'de> Deserialize<'de> for SegmentComplexity
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 SegmentComplexity
impl RefUnwindSafe for SegmentComplexity
impl Send for SegmentComplexity
impl Sync for SegmentComplexity
impl Unpin for SegmentComplexity
impl UnsafeUnpin for SegmentComplexity
impl UnwindSafe for SegmentComplexity
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