Struct av_format::stream::StreamGroup
source · [−]pub struct StreamGroup<'a> {
pub id: usize,
pub start: u64,
pub end: u64,
pub streams: &'a [Stream],
}Expand description
Group of streams.
Fields
id: usizeStream group ID.
Must be unique for each group of stream.
start: u64Start position of the stream group.
end: u64End position of the stream group.
streams: &'a [Stream]Streams of the group.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for StreamGroup<'a>
impl<'a> Send for StreamGroup<'a>
impl<'a> Sync for StreamGroup<'a>
impl<'a> Unpin for StreamGroup<'a>
impl<'a> !UnwindSafe for StreamGroup<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more