pub struct Segment { /* private fields */ }
Expand description
Container for Chunk and Keyframe data
Implementations
sourceimpl Segment
impl Segment
sourcepub fn offset(&self) -> usize
pub fn offset(&self) -> usize
The offset in bytes from the segment headers’ end at which the segment’s data starts
sourcepub fn data_mut(&mut self) -> &mut Vec<u8>
pub fn data_mut(&mut self) -> &mut Vec<u8>
Get the raw segment’s data as a mutable Vec
__WARNING:__This should only be used if you decrypt/load segment data yourself
sourcepub fn from_raw_section(data: &[u8]) -> Segment
pub fn from_raw_section(data: &[u8]) -> Segment
Build a new segment headet from a payload’s data
This does not load the segment’s data section
Use from_slice instead
sourcepub fn from_slice(data: &[u8]) -> Result<Segment, Errors>
pub fn from_slice(data: &[u8]) -> Result<Segment, Errors>
Build a new segment headet from a payload’s data
This does not load the segment’s data section
sourcepub fn set_data(&mut self, data: Vec<u8>)
pub fn set_data(&mut self, data: Vec<u8>)
Attach data to the Segment
CAUTION: no validation is performed on the provided data, ensure that the provided vec is the segment’s vec
sourcepub fn is_keyframe(&self) -> bool
pub fn is_keyframe(&self) -> bool
Whether this segment is a keyframe
sourcepub fn section_iter<'a>(&'a self) -> Result<SegmentIterator<'a>, Errors>
pub fn section_iter<'a>(&'a self) -> Result<SegmentIterator<'a>, Errors>
Get a section iterator over the data of the segment
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Segment
impl Send for Segment
impl Sync for Segment
impl Unpin for Segment
impl UnwindSafe for Segment
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