pub enum ConfigUpdate {
Incomplete,
Unchanged,
Changed(CodecConfig),
}Expand description
Result of inspecting an access unit for decoder parameter sets.
Variants§
Incomplete
Required parameter sets have not all been observed.
Unchanged
Complete configuration is unchanged.
Changed(CodecConfig)
A complete new configuration was observed.
Trait Implementations§
Source§impl Clone for ConfigUpdate
impl Clone for ConfigUpdate
Source§fn clone(&self) -> ConfigUpdate
fn clone(&self) -> ConfigUpdate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigUpdate
impl Debug for ConfigUpdate
impl Eq for ConfigUpdate
Source§impl PartialEq for ConfigUpdate
impl PartialEq for ConfigUpdate
impl StructuralPartialEq for ConfigUpdate
Auto Trait Implementations§
impl !Freeze for ConfigUpdate
impl RefUnwindSafe for ConfigUpdate
impl Send for ConfigUpdate
impl Sync for ConfigUpdate
impl Unpin for ConfigUpdate
impl UnsafeUnpin for ConfigUpdate
impl UnwindSafe for ConfigUpdate
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