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> Freeze for StreamGroup<'a>
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§
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