pub struct AviStreamInfo {
pub index: u32,
pub stream_type: StreamType,
pub header: AviStreamHeader,
pub video_format: Option<BitmapInfoHeader>,
pub audio_format: Option<WaveFormatEx>,
}Expand description
Information about a parsed AVI stream.
Fields§
§index: u32Zero-based stream index.
stream_type: StreamTypeStream type.
header: AviStreamHeaderStream header.
video_format: Option<BitmapInfoHeader>Video format (present if stream_type == Video).
audio_format: Option<WaveFormatEx>Audio format (present if stream_type == Audio).
Trait Implementations§
Source§impl Clone for AviStreamInfo
impl Clone for AviStreamInfo
Source§fn clone(&self) -> AviStreamInfo
fn clone(&self) -> AviStreamInfo
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AviStreamInfo
impl RefUnwindSafe for AviStreamInfo
impl Send for AviStreamInfo
impl Sync for AviStreamInfo
impl Unpin for AviStreamInfo
impl UnwindSafe for AviStreamInfo
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)