pub enum Code {
Show 21 variants R1_4, R1_3, R2_5, R1_2, R3_5, R2_3, R3_4, R4_5, R5_6, R8_9, R9_10, R1_4short, R1_3short, R2_5short, R1_2short, R3_5short, R2_3short, R3_4short, R4_5short, R5_6short, R8_9short,
}
Expand description

DVB-S2 LDPC code types

Variants§

§

R1_4

rate 1/4 normal FECFRAME

§

R1_3

rate 1/3 normal FECFRAME

§

R2_5

rate 2/5 normal FECFRAME

§

R1_2

rate 1/2 normal FECFRAME

§

R3_5

rate 3/5 normal FECFRAME

§

R2_3

rate 2/3 normal FECFRAME

§

R3_4

rate 3/4 normal FECFRAME

§

R4_5

rate 4/5 normal FECFRAME

§

R5_6

rate 5/6 normal FECFRAME

§

R8_9

rate 8/9 normal FECFRAME

§

R9_10

rate 9/10 normal FECFRAME

§

R1_4short

rate 1/4 short FECFRAME (the LDPC rate is actually 1/5)

§

R1_3short

rate 1/3 short FECFRAME

§

R2_5short

rate 2/5 short FECFRAME

§

R1_2short

rate 1/2 short FECFRAME (the LDPC rate is actually 4/9)

§

R3_5short

rate 3/5 short FECFRAME

§

R2_3short

rate 2/3 short FECFRAME

§

R3_4short

rate 3/4 short FECFRAME (the LDPC rate is actually 11/15)

§

R4_5short

rate 4/5 short FECFRAME (the LDPC rate is actually 7/9)

§

R5_6short

rate 5/6 short FECFRAME (the LDPC rate is actually 37/45)

§

R8_9short

rate 8/9 short FECFRAME

Implementations§

source§

impl Code

source

pub fn h(self) -> SparseMatrix

Construct parity check matrix for the code

Examples
let h = Code::R1_2.h();
print!("{}", h.alist());

Trait Implementations§

source§

impl Clone for Code

source§

fn clone(&self) -> Code

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Code

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Code> for Code

source§

fn eq(&self, other: &Code) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sequence for Code

source§

const CARDINALITY: usize = 21usize

Number of values of type Self. Read more
source§

fn next(&self) -> Option<Self>

Returns value following *self or None if this was the end. Read more
source§

fn previous(&self) -> Option<Self>

Returns value preceding *self or None if this was the beginning. Read more
source§

fn first() -> Option<Self>

Returns the first value of type Self. Read more
source§

fn last() -> Option<Self>

Returns the last value of type Self. Read more
source§

impl Copy for Code

source§

impl Eq for Code

source§

impl StructuralEq for Code

source§

impl StructuralPartialEq for Code

Auto Trait Implementations§

§

impl RefUnwindSafe for Code

§

impl Send for Code

§

impl Sync for Code

§

impl Unpin for Code

§

impl UnwindSafe for Code

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V