Enum mpr_prop

Source
#[repr(u32)]
pub enum mpr_prop {
Show 41 variants MPR_PROP_UNKNOWN = 0, MPR_PROP_BUNDLE = 256, MPR_PROP_DATA = 512, MPR_PROP_DEV = 768, MPR_PROP_DIR = 1_024, MPR_PROP_EPHEM = 1_280, MPR_PROP_EXPR = 1_536, MPR_PROP_HOST = 1_792, MPR_PROP_ID = 2_048, MPR_PROP_IS_LOCAL = 2_304, MPR_PROP_JITTER = 2_560, MPR_PROP_LEN = 2_816, MPR_PROP_LIBVER = 3_072, MPR_PROP_LINKED = 3_328, MPR_PROP_MAX = 3_584, MPR_PROP_MIN = 3_840, MPR_PROP_MUTED = 4_096, MPR_PROP_NAME = 4_352, MPR_PROP_NUM_INST = 4_608, MPR_PROP_NUM_MAPS = 4_864, MPR_PROP_NUM_MAPS_IN = 5_120, MPR_PROP_NUM_MAPS_OUT = 5_376, MPR_PROP_NUM_SIGS_IN = 5_632, MPR_PROP_NUM_SIGS_OUT = 5_888, MPR_PROP_ORDINAL = 6_144, MPR_PROP_PERIOD = 6_400, MPR_PROP_PORT = 6_656, MPR_PROP_PROCESS_LOC = 6_912, MPR_PROP_PROTOCOL = 7_168, MPR_PROP_RATE = 7_424, MPR_PROP_SCOPE = 7_680, MPR_PROP_SIG = 7_936, MPR_PROP_SLOT = 8_192, MPR_PROP_STATUS = 8_448, MPR_PROP_STEAL_MODE = 8_704, MPR_PROP_SYNCED = 8_960, MPR_PROP_TYPE = 9_216, MPR_PROP_UNIT = 9_472, MPR_PROP_USE_INST = 9_728, MPR_PROP_VERSION = 9_984, MPR_PROP_EXTRA = 10_240,
}
Expand description

Symbolic representation of recognized properties.

Variants§

§

MPR_PROP_UNKNOWN = 0

§

MPR_PROP_BUNDLE = 256

§

MPR_PROP_DATA = 512

§

MPR_PROP_DEV = 768

§

MPR_PROP_DIR = 1_024

§

MPR_PROP_EPHEM = 1_280

§

MPR_PROP_EXPR = 1_536

§

MPR_PROP_HOST = 1_792

§

MPR_PROP_ID = 2_048

§

MPR_PROP_IS_LOCAL = 2_304

§

MPR_PROP_JITTER = 2_560

§

MPR_PROP_LEN = 2_816

§

MPR_PROP_LIBVER = 3_072

§

MPR_PROP_LINKED = 3_328

§

MPR_PROP_MAX = 3_584

§

MPR_PROP_MIN = 3_840

§

MPR_PROP_MUTED = 4_096

§

MPR_PROP_NAME = 4_352

§

MPR_PROP_NUM_INST = 4_608

§

MPR_PROP_NUM_MAPS = 4_864

§

MPR_PROP_NUM_MAPS_IN = 5_120

§

MPR_PROP_NUM_MAPS_OUT = 5_376

§

MPR_PROP_NUM_SIGS_IN = 5_632

§

MPR_PROP_NUM_SIGS_OUT = 5_888

§

MPR_PROP_ORDINAL = 6_144

§

MPR_PROP_PERIOD = 6_400

§

MPR_PROP_PORT = 6_656

§

MPR_PROP_PROCESS_LOC = 6_912

§

MPR_PROP_PROTOCOL = 7_168

§

MPR_PROP_RATE = 7_424

§

MPR_PROP_SCOPE = 7_680

§

MPR_PROP_SIG = 7_936

§

MPR_PROP_SLOT = 8_192

§

MPR_PROP_STATUS = 8_448

§

MPR_PROP_STEAL_MODE = 8_704

§

MPR_PROP_SYNCED = 8_960

§

MPR_PROP_TYPE = 9_216

§

MPR_PROP_UNIT = 9_472

§

MPR_PROP_USE_INST = 9_728

§

MPR_PROP_VERSION = 9_984

§

MPR_PROP_EXTRA = 10_240

Trait Implementations§

Source§

impl Clone for mpr_prop

Source§

fn clone(&self) -> mpr_prop

Returns a duplicate 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 mpr_prop

Source§

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

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

impl Hash for mpr_prop

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 mpr_prop

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 Copy for mpr_prop

Source§

impl Eq for mpr_prop

Source§

impl StructuralPartialEq for mpr_prop

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.