pub struct RansByteDecSymbol {
pub freq: u32,
pub start: u32,
}Expand description
Prepared decoder symbol.
Fields§
§freq: u32§start: u32Implementations§
Source§impl RansByteDecSymbol
impl RansByteDecSymbol
Sourcepub fn new(start: u32, freq: u32) -> RansByteDecSymbol
pub fn new(start: u32, freq: u32) -> RansByteDecSymbol
Create a new decoder symbol.
Trait Implementations§
Source§impl Clone for RansByteDecSymbol
impl Clone for RansByteDecSymbol
Source§fn clone(&self) -> RansByteDecSymbol
fn clone(&self) -> RansByteDecSymbol
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 moreimpl Copy for RansByteDecSymbol
Auto Trait Implementations§
impl Freeze for RansByteDecSymbol
impl RefUnwindSafe for RansByteDecSymbol
impl Send for RansByteDecSymbol
impl Sync for RansByteDecSymbol
impl Unpin for RansByteDecSymbol
impl UnsafeUnpin for RansByteDecSymbol
impl UnwindSafe for RansByteDecSymbol
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