pub enum PredictionStructure {
LowDelay {
limit: u16,
},
}
Variants§
LowDelay
Simplest prediction structure, suitable eg. for RTC. Interframe is produced at the start of
the stream and every time when limit
frames are reached. Following interframe frames
are frames relying solely on the last frame.
Trait Implementations§
Source§impl Clone for PredictionStructure
impl Clone for PredictionStructure
Source§fn clone(&self) -> PredictionStructure
fn clone(&self) -> PredictionStructure
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PredictionStructure
impl RefUnwindSafe for PredictionStructure
impl Send for PredictionStructure
impl Sync for PredictionStructure
impl Unpin for PredictionStructure
impl UnwindSafe for PredictionStructure
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