Struct gstreamer_audio::AudioPackFlags [−]
pub struct AudioPackFlags { /* fields omitted */ }Methods
impl AudioPackFlags
impl AudioPackFlagspub const NONE: AudioPackFlags
NONE: AudioPackFlags = AudioPackFlags{bits: 0,}
pub const TRUNCATE_RANGE: AudioPackFlags
TRUNCATE_RANGE: AudioPackFlags = AudioPackFlags{bits: 1,}
pub fn empty() -> AudioPackFlags
pub fn empty() -> AudioPackFlagsReturns an empty set of flags.
pub fn all() -> AudioPackFlags
pub fn all() -> AudioPackFlagsReturns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<AudioPackFlags>
pub fn from_bits(bits: u32) -> Option<AudioPackFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> AudioPackFlags
pub fn from_bits_truncate(bits: u32) -> AudioPackFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: AudioPackFlags) -> bool
pub fn intersects(&self, other: AudioPackFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: AudioPackFlags) -> bool
pub fn contains(&self, other: AudioPackFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: AudioPackFlags)
pub fn insert(&mut self, other: AudioPackFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: AudioPackFlags)
pub fn remove(&mut self, other: AudioPackFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: AudioPackFlags)
pub fn toggle(&mut self, other: AudioPackFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: AudioPackFlags, value: bool)
pub fn set(&mut self, other: AudioPackFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for AudioPackFlags
impl Copy for AudioPackFlagsimpl PartialEq for AudioPackFlags
impl PartialEq for AudioPackFlagsfn eq(&self, other: &AudioPackFlags) -> bool
fn eq(&self, other: &AudioPackFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &AudioPackFlags) -> bool
fn ne(&self, other: &AudioPackFlags) -> boolThis method tests for !=.
impl Eq for AudioPackFlags
impl Eq for AudioPackFlagsimpl Clone for AudioPackFlags
impl Clone for AudioPackFlagsfn clone(&self) -> AudioPackFlags
fn clone(&self) -> AudioPackFlagsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for AudioPackFlags
impl PartialOrd for AudioPackFlagsfn partial_cmp(&self, other: &AudioPackFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &AudioPackFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &AudioPackFlags) -> bool
fn lt(&self, other: &AudioPackFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &AudioPackFlags) -> bool
fn le(&self, other: &AudioPackFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &AudioPackFlags) -> bool
fn gt(&self, other: &AudioPackFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &AudioPackFlags) -> bool
fn ge(&self, other: &AudioPackFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for AudioPackFlags
impl Ord for AudioPackFlagsfn cmp(&self, other: &AudioPackFlags) -> Ordering
fn cmp(&self, other: &AudioPackFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for AudioPackFlags
impl Hash for AudioPackFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for AudioPackFlags
impl Debug for AudioPackFlagsimpl Binary for AudioPackFlags
impl Binary for AudioPackFlagsimpl Octal for AudioPackFlags
impl Octal for AudioPackFlagsimpl LowerHex for AudioPackFlags
impl LowerHex for AudioPackFlagsimpl UpperHex for AudioPackFlags
impl UpperHex for AudioPackFlagsimpl BitOr for AudioPackFlags
impl BitOr for AudioPackFlagstype Output = AudioPackFlags
The resulting type after applying the | operator.
fn bitor(self, other: AudioPackFlags) -> AudioPackFlags
fn bitor(self, other: AudioPackFlags) -> AudioPackFlagsReturns the union of the two sets of flags.
impl BitOrAssign for AudioPackFlags
impl BitOrAssign for AudioPackFlagsfn bitor_assign(&mut self, other: AudioPackFlags)
fn bitor_assign(&mut self, other: AudioPackFlags)Adds the set of flags.
impl BitXor for AudioPackFlags
impl BitXor for AudioPackFlagstype Output = AudioPackFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: AudioPackFlags) -> AudioPackFlags
fn bitxor(self, other: AudioPackFlags) -> AudioPackFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for AudioPackFlags
impl BitXorAssign for AudioPackFlagsfn bitxor_assign(&mut self, other: AudioPackFlags)
fn bitxor_assign(&mut self, other: AudioPackFlags)Toggles the set of flags.
impl BitAnd for AudioPackFlags
impl BitAnd for AudioPackFlagstype Output = AudioPackFlags
The resulting type after applying the & operator.
fn bitand(self, other: AudioPackFlags) -> AudioPackFlags
fn bitand(self, other: AudioPackFlags) -> AudioPackFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for AudioPackFlags
impl BitAndAssign for AudioPackFlagsfn bitand_assign(&mut self, other: AudioPackFlags)
fn bitand_assign(&mut self, other: AudioPackFlags)Disables all flags disabled in the set.
impl Sub for AudioPackFlags
impl Sub for AudioPackFlagstype Output = AudioPackFlags
The resulting type after applying the - operator.
fn sub(self, other: AudioPackFlags) -> AudioPackFlags
fn sub(self, other: AudioPackFlags) -> AudioPackFlagsReturns the set difference of the two sets of flags.
impl SubAssign for AudioPackFlags
impl SubAssign for AudioPackFlagsfn sub_assign(&mut self, other: AudioPackFlags)
fn sub_assign(&mut self, other: AudioPackFlags)Disables all flags enabled in the set.
impl Not for AudioPackFlags
impl Not for AudioPackFlagstype Output = AudioPackFlags
The resulting type after applying the ! operator.
fn not(self) -> AudioPackFlags
fn not(self) -> AudioPackFlagsReturns the complement of this set of flags.
impl Extend<AudioPackFlags> for AudioPackFlags
impl Extend<AudioPackFlags> for AudioPackFlagsfn extend<T: IntoIterator<Item = AudioPackFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = AudioPackFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<AudioPackFlags> for AudioPackFlags
impl FromIterator<AudioPackFlags> for AudioPackFlagsfn from_iter<T: IntoIterator<Item = AudioPackFlags>>(
iterator: T
) -> AudioPackFlags
fn from_iter<T: IntoIterator<Item = AudioPackFlags>>(
iterator: T
) -> AudioPackFlagsCreates a value from an iterator. Read more
impl StaticType for AudioPackFlags[src]
impl StaticType for AudioPackFlagsfn static_type() -> Type[src]
fn static_type() -> TypeReturns the type identifier of Self.
impl<'a> FromValueOptional<'a> for AudioPackFlags[src]
impl<'a> FromValueOptional<'a> for AudioPackFlagsunsafe fn from_value_optional(value: &Value) -> Option<Self>[src]
unsafe fn from_value_optional(value: &Value) -> Option<Self>impl<'a> FromValue<'a> for AudioPackFlags[src]
impl<'a> FromValue<'a> for AudioPackFlagsunsafe fn from_value(value: &Value) -> Self[src]
unsafe fn from_value(value: &Value) -> Selfimpl SetValue for AudioPackFlags[src]
impl SetValue for AudioPackFlagsAuto Trait Implementations
impl Send for AudioPackFlags
impl Send for AudioPackFlagsimpl Sync for AudioPackFlags
impl Sync for AudioPackFlags