pub struct Synthesizer<'n, N: NaluStruct, W: Write> { /* private fields */ }
Expand description
A helper to output typed NALUs to std::io::Write
using NaluWriter
.
Implementations§
Source§impl<'n, W: Write> Synthesizer<'n, Sps, W>
impl<'n, W: Write> Synthesizer<'n, Sps, W>
pub fn synthesize( ref_idc: u8, sps: &'n Sps, writer: W, ep_enabled: bool, ) -> SynthesizerResult<()>
Source§impl<'n, W: Write> Synthesizer<'n, Pps, W>
impl<'n, W: Write> Synthesizer<'n, Pps, W>
pub fn synthesize( ref_idc: u8, pps: &'n Pps, writer: W, ep_enabled: bool, ) -> SynthesizerResult<()>
Auto Trait Implementations§
impl<'n, N, W> Freeze for Synthesizer<'n, N, W>where
W: Freeze,
impl<'n, N, W> RefUnwindSafe for Synthesizer<'n, N, W>where
N: RefUnwindSafe,
W: RefUnwindSafe,
impl<'n, N, W> Send for Synthesizer<'n, N, W>
impl<'n, N, W> Sync for Synthesizer<'n, N, W>
impl<'n, N, W> Unpin for Synthesizer<'n, N, W>where
W: Unpin,
impl<'n, N, W> UnwindSafe for Synthesizer<'n, N, W>where
N: RefUnwindSafe,
W: UnwindSafe,
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