pub struct Clip {
pub input: Bytes,
pub start: Option<f64>,
pub end: Option<f64>,
}Expand description
One clip of a splice: an input plus an optional
[start, end) trim window in seconds (either bound None = open).
Fields§
§input: Bytes§start: Option<f64>§end: Option<f64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Clip
impl RefUnwindSafe for Clip
impl Send for Clip
impl Sync for Clip
impl Unpin for Clip
impl UnsafeUnpin for Clip
impl UnwindSafe for Clip
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