pub struct SegmentPick {
pub layer: i64,
pub idx: u64,
pub confidence: f64,
}Expand description
A picked frame for one layer’s segment: which stream frame index to keep (→ its ring JPEG) and the selection confidence.
Fields§
§layer: i64§idx: u64§confidence: f64Trait Implementations§
Source§impl Clone for SegmentPick
impl Clone for SegmentPick
Source§fn clone(&self) -> SegmentPick
fn clone(&self) -> SegmentPick
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 SegmentPick
Source§impl Debug for SegmentPick
impl Debug for SegmentPick
Source§impl PartialEq for SegmentPick
impl PartialEq for SegmentPick
Source§fn eq(&self, other: &SegmentPick) -> bool
fn eq(&self, other: &SegmentPick) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SegmentPick
Auto Trait Implementations§
impl Freeze for SegmentPick
impl RefUnwindSafe for SegmentPick
impl Send for SegmentPick
impl Sync for SegmentPick
impl Unpin for SegmentPick
impl UnsafeUnpin for SegmentPick
impl UnwindSafe for SegmentPick
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