pub struct Clip {
pub file_name: String,
pub codec_id: String,
}
Expand description
A clip file, also known as a segment.
This identifies the playable stream file. file_name
consists of 5 numbers
(e.g. “00055”), and codec_id
of 4 letters which will usually be “M2TS” on
blu-rays.
Fields§
§file_name: String
§codec_id: String
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 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