[][src]Struct fpsdk::ProcessParamFlags

pub struct ProcessParamFlags { /* fields omitted */ }

Processing parameters flags.

Implementations

impl ProcessParamFlags[src]

pub const UPDATE_VALUE: ProcessParamFlags[src]

Update the value of the parameter.

pub const GET_VALUE: ProcessParamFlags[src]

Return the value of the parameter as the result of the function.

pub const SHOW_HINT: ProcessParamFlags[src]

Update the hint if there is one.

pub const UPDATE_CONTROL: ProcessParamFlags[src]

Update the parameter control (wheel, slider, ...).

pub const FROM_MIDI: ProcessParamFlags[src]

A value between 0 and 65536 has to be translated to the range of the parameter control.

Note that you should also return the translated value, even if ProcessParamFlags::GET_VALUE isn't included.

(internal) Don't check if wheels are linked.

pub const INTERNAL_CTRL: ProcessParamFlags[src]

Sent by an internal controller. Internal controllers should pay attention to these, to avoid Feedback of controller changes.

pub const PLUG_RESERVED: ProcessParamFlags[src]

This flag is free to be used by the plugin as it wishes.

pub const fn empty() -> ProcessParamFlags[src]

Returns an empty set of flags

pub const fn all() -> ProcessParamFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> isize[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: isize) -> Option<ProcessParamFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: isize) -> ProcessParamFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: isize) -> ProcessParamFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: ProcessParamFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: ProcessParamFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: ProcessParamFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ProcessParamFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ProcessParamFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: ProcessParamFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for ProcessParamFlags[src]

impl BitAnd<ProcessParamFlags> for ProcessParamFlags[src]

type Output = ProcessParamFlags

The resulting type after applying the & operator.

fn bitand(self, other: ProcessParamFlags) -> ProcessParamFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<ProcessParamFlags> for ProcessParamFlags[src]

fn bitand_assign(&mut self, other: ProcessParamFlags)[src]

Disables all flags disabled in the set.

impl BitOr<ProcessParamFlags> for ProcessParamFlags[src]

type Output = ProcessParamFlags

The resulting type after applying the | operator.

fn bitor(self, other: ProcessParamFlags) -> ProcessParamFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<ProcessParamFlags> for ProcessParamFlags[src]

fn bitor_assign(&mut self, other: ProcessParamFlags)[src]

Adds the set of flags.

impl BitXor<ProcessParamFlags> for ProcessParamFlags[src]

type Output = ProcessParamFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: ProcessParamFlags) -> ProcessParamFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<ProcessParamFlags> for ProcessParamFlags[src]

fn bitxor_assign(&mut self, other: ProcessParamFlags)[src]

Toggles the set of flags.

impl Clone for ProcessParamFlags[src]

impl Copy for ProcessParamFlags[src]

impl Debug for ProcessParamFlags[src]

impl Eq for ProcessParamFlags[src]

impl Extend<ProcessParamFlags> for ProcessParamFlags[src]

impl FromIterator<ProcessParamFlags> for ProcessParamFlags[src]

impl Hash for ProcessParamFlags[src]

impl LowerHex for ProcessParamFlags[src]

impl Not for ProcessParamFlags[src]

type Output = ProcessParamFlags

The resulting type after applying the ! operator.

fn not(self) -> ProcessParamFlags[src]

Returns the complement of this set of flags.

impl Octal for ProcessParamFlags[src]

impl Ord for ProcessParamFlags[src]

impl PartialEq<ProcessParamFlags> for ProcessParamFlags[src]

impl PartialOrd<ProcessParamFlags> for ProcessParamFlags[src]

impl StructuralEq for ProcessParamFlags[src]

impl StructuralPartialEq for ProcessParamFlags[src]

impl Sub<ProcessParamFlags> for ProcessParamFlags[src]

type Output = ProcessParamFlags

The resulting type after applying the - operator.

fn sub(self, other: ProcessParamFlags) -> ProcessParamFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<ProcessParamFlags> for ProcessParamFlags[src]

fn sub_assign(&mut self, other: ProcessParamFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for ProcessParamFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.