pub struct SeiEncoder { /* private fields */ }Expand description
Wire format for a sequence of SEI messages.
Each message is framed as:
[type: u8][length: u32 big-endian][payload: <length> bytes]Implementations§
Source§impl SeiEncoder
impl SeiEncoder
Sourcepub fn write_message(&mut self, msg: &SeiMessage)
pub fn write_message(&mut self, msg: &SeiMessage)
Append a single SeiMessage.
Sourcepub fn write_messages(&mut self, msgs: &[SeiMessage])
pub fn write_messages(&mut self, msgs: &[SeiMessage])
Append multiple messages.
Trait Implementations§
Source§impl Debug for SeiEncoder
impl Debug for SeiEncoder
Source§impl Default for SeiEncoder
impl Default for SeiEncoder
Source§fn default() -> SeiEncoder
fn default() -> SeiEncoder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SeiEncoder
impl RefUnwindSafe for SeiEncoder
impl Send for SeiEncoder
impl Sync for SeiEncoder
impl Unpin for SeiEncoder
impl UnsafeUnpin for SeiEncoder
impl UnwindSafe for SeiEncoder
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more