Skip to main content

fe_caps

Enum fe_caps 

Source
#[repr(u32)]
pub enum fe_caps {
Show 31 variants FE_IS_STUPID = 0, FE_CAN_INVERSION_AUTO = 1, FE_CAN_FEC_1_2 = 2, FE_CAN_FEC_2_3 = 4, FE_CAN_FEC_3_4 = 8, FE_CAN_FEC_4_5 = 16, FE_CAN_FEC_5_6 = 32, FE_CAN_FEC_6_7 = 64, FE_CAN_FEC_7_8 = 128, FE_CAN_FEC_8_9 = 256, FE_CAN_FEC_AUTO = 512, FE_CAN_QPSK = 1_024, FE_CAN_QAM_16 = 2_048, FE_CAN_QAM_32 = 4_096, FE_CAN_QAM_64 = 8_192, FE_CAN_QAM_128 = 16_384, FE_CAN_QAM_256 = 32_768, FE_CAN_QAM_AUTO = 65_536, FE_CAN_TRANSMISSION_MODE_AUTO = 131_072, FE_CAN_BANDWIDTH_AUTO = 262_144, FE_CAN_GUARD_INTERVAL_AUTO = 524_288, FE_CAN_HIERARCHY_AUTO = 1_048_576, FE_CAN_8VSB = 2_097_152, FE_CAN_16VSB = 4_194_304, FE_HAS_EXTENDED_CAPS = 8_388_608, FE_CAN_MULTISTREAM = 67_108_864, FE_CAN_TURBO_FEC = 134_217_728, FE_CAN_2G_MODULATION = 268_435_456, FE_NEEDS_BENDING = 536_870_912, FE_CAN_RECOVER = 1_073_741_824, FE_CAN_MUTE_TS = 2_147_483_648,
}

Variants§

§

FE_IS_STUPID = 0

§

FE_CAN_INVERSION_AUTO = 1

§

FE_CAN_FEC_1_2 = 2

§

FE_CAN_FEC_2_3 = 4

§

FE_CAN_FEC_3_4 = 8

§

FE_CAN_FEC_4_5 = 16

§

FE_CAN_FEC_5_6 = 32

§

FE_CAN_FEC_6_7 = 64

§

FE_CAN_FEC_7_8 = 128

§

FE_CAN_FEC_8_9 = 256

§

FE_CAN_FEC_AUTO = 512

§

FE_CAN_QPSK = 1_024

§

FE_CAN_QAM_16 = 2_048

§

FE_CAN_QAM_32 = 4_096

§

FE_CAN_QAM_64 = 8_192

§

FE_CAN_QAM_128 = 16_384

§

FE_CAN_QAM_256 = 32_768

§

FE_CAN_QAM_AUTO = 65_536

§

FE_CAN_TRANSMISSION_MODE_AUTO = 131_072

§

FE_CAN_BANDWIDTH_AUTO = 262_144

§

FE_CAN_GUARD_INTERVAL_AUTO = 524_288

§

FE_CAN_HIERARCHY_AUTO = 1_048_576

§

FE_CAN_8VSB = 2_097_152

§

FE_CAN_16VSB = 4_194_304

§

FE_HAS_EXTENDED_CAPS = 8_388_608

§

FE_CAN_MULTISTREAM = 67_108_864

§

FE_CAN_TURBO_FEC = 134_217_728

§

FE_CAN_2G_MODULATION = 268_435_456

§

FE_NEEDS_BENDING = 536_870_912

§

FE_CAN_RECOVER = 1_073_741_824

§

FE_CAN_MUTE_TS = 2_147_483_648

Trait Implementations§

Source§

impl Clone for fe_caps

Source§

fn clone(&self) -> fe_caps

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for fe_caps

Source§

impl Debug for fe_caps

Source§

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

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

impl Eq for fe_caps

Source§

impl Hash for fe_caps

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for fe_caps

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for fe_caps

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.