Struct gstreamer::DebugColorFlags [−]
pub struct DebugColorFlags { /* fields omitted */ }Methods
impl DebugColorFlags
impl DebugColorFlagspub const FG_BLACK: DebugColorFlags
FG_BLACK: DebugColorFlags = DebugColorFlags{bits: 0,}
pub const FG_RED: DebugColorFlags
FG_RED: DebugColorFlags = DebugColorFlags{bits: 1,}
pub const FG_GREEN: DebugColorFlags
FG_GREEN: DebugColorFlags = DebugColorFlags{bits: 2,}
pub const FG_YELLOW: DebugColorFlags
FG_YELLOW: DebugColorFlags = DebugColorFlags{bits: 3,}
pub const FG_BLUE: DebugColorFlags
FG_BLUE: DebugColorFlags = DebugColorFlags{bits: 4,}
pub const FG_MAGENTA: DebugColorFlags
FG_MAGENTA: DebugColorFlags = DebugColorFlags{bits: 5,}
pub const FG_CYAN: DebugColorFlags
FG_CYAN: DebugColorFlags = DebugColorFlags{bits: 6,}
pub const FG_WHITE: DebugColorFlags
FG_WHITE: DebugColorFlags = DebugColorFlags{bits: 7,}
pub const BG_BLACK: DebugColorFlags
BG_BLACK: DebugColorFlags = DebugColorFlags{bits: 0,}
pub const BG_RED: DebugColorFlags
BG_RED: DebugColorFlags = DebugColorFlags{bits: 16,}
pub const BG_GREEN: DebugColorFlags
BG_GREEN: DebugColorFlags = DebugColorFlags{bits: 32,}
pub const BG_YELLOW: DebugColorFlags
BG_YELLOW: DebugColorFlags = DebugColorFlags{bits: 48,}
pub const BG_BLUE: DebugColorFlags
BG_BLUE: DebugColorFlags = DebugColorFlags{bits: 64,}
pub const BG_MAGENTA: DebugColorFlags
BG_MAGENTA: DebugColorFlags = DebugColorFlags{bits: 80,}
pub const BG_CYAN: DebugColorFlags
BG_CYAN: DebugColorFlags = DebugColorFlags{bits: 96,}
pub const BG_WHITE: DebugColorFlags
BG_WHITE: DebugColorFlags = DebugColorFlags{bits: 112,}
pub const BOLD: DebugColorFlags
BOLD: DebugColorFlags = DebugColorFlags{bits: 256,}
pub const UNDERLINE: DebugColorFlags
UNDERLINE: DebugColorFlags = DebugColorFlags{bits: 512,}
pub fn empty() -> DebugColorFlags
pub fn empty() -> DebugColorFlagsReturns an empty set of flags.
pub fn all() -> DebugColorFlags
pub fn all() -> DebugColorFlagsReturns 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<DebugColorFlags>
pub fn from_bits(bits: u32) -> Option<DebugColorFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> DebugColorFlags
pub fn from_bits_truncate(bits: u32) -> DebugColorFlagsConvert 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: DebugColorFlags) -> bool
pub fn intersects(&self, other: DebugColorFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: DebugColorFlags) -> bool
pub fn contains(&self, other: DebugColorFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: DebugColorFlags)
pub fn insert(&mut self, other: DebugColorFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: DebugColorFlags)
pub fn remove(&mut self, other: DebugColorFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: DebugColorFlags)
pub fn toggle(&mut self, other: DebugColorFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: DebugColorFlags, value: bool)
pub fn set(&mut self, other: DebugColorFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for DebugColorFlags
impl Copy for DebugColorFlagsimpl PartialEq for DebugColorFlags
impl PartialEq for DebugColorFlagsfn eq(&self, other: &DebugColorFlags) -> bool
fn eq(&self, other: &DebugColorFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DebugColorFlags) -> bool
fn ne(&self, other: &DebugColorFlags) -> boolThis method tests for !=.
impl Eq for DebugColorFlags
impl Eq for DebugColorFlagsimpl Clone for DebugColorFlags
impl Clone for DebugColorFlagsfn clone(&self) -> DebugColorFlags
fn clone(&self) -> DebugColorFlagsReturns 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 DebugColorFlags
impl PartialOrd for DebugColorFlagsfn partial_cmp(&self, other: &DebugColorFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &DebugColorFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &DebugColorFlags) -> bool
fn lt(&self, other: &DebugColorFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &DebugColorFlags) -> bool
fn le(&self, other: &DebugColorFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &DebugColorFlags) -> bool
fn gt(&self, other: &DebugColorFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &DebugColorFlags) -> bool
fn ge(&self, other: &DebugColorFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for DebugColorFlags
impl Ord for DebugColorFlagsfn cmp(&self, other: &DebugColorFlags) -> Ordering
fn cmp(&self, other: &DebugColorFlags) -> 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 DebugColorFlags
impl Hash for DebugColorFlagsfn 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 DebugColorFlags
impl Debug for DebugColorFlagsimpl Binary for DebugColorFlags
impl Binary for DebugColorFlagsimpl Octal for DebugColorFlags
impl Octal for DebugColorFlagsimpl LowerHex for DebugColorFlags
impl LowerHex for DebugColorFlagsimpl UpperHex for DebugColorFlags
impl UpperHex for DebugColorFlagsimpl BitOr for DebugColorFlags
impl BitOr for DebugColorFlagstype Output = DebugColorFlags
The resulting type after applying the | operator.
fn bitor(self, other: DebugColorFlags) -> DebugColorFlags
fn bitor(self, other: DebugColorFlags) -> DebugColorFlagsReturns the union of the two sets of flags.
impl BitOrAssign for DebugColorFlags
impl BitOrAssign for DebugColorFlagsfn bitor_assign(&mut self, other: DebugColorFlags)
fn bitor_assign(&mut self, other: DebugColorFlags)Adds the set of flags.
impl BitXor for DebugColorFlags
impl BitXor for DebugColorFlagstype Output = DebugColorFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: DebugColorFlags) -> DebugColorFlags
fn bitxor(self, other: DebugColorFlags) -> DebugColorFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for DebugColorFlags
impl BitXorAssign for DebugColorFlagsfn bitxor_assign(&mut self, other: DebugColorFlags)
fn bitxor_assign(&mut self, other: DebugColorFlags)Toggles the set of flags.
impl BitAnd for DebugColorFlags
impl BitAnd for DebugColorFlagstype Output = DebugColorFlags
The resulting type after applying the & operator.
fn bitand(self, other: DebugColorFlags) -> DebugColorFlags
fn bitand(self, other: DebugColorFlags) -> DebugColorFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for DebugColorFlags
impl BitAndAssign for DebugColorFlagsfn bitand_assign(&mut self, other: DebugColorFlags)
fn bitand_assign(&mut self, other: DebugColorFlags)Disables all flags disabled in the set.
impl Sub for DebugColorFlags
impl Sub for DebugColorFlagstype Output = DebugColorFlags
The resulting type after applying the - operator.
fn sub(self, other: DebugColorFlags) -> DebugColorFlags
fn sub(self, other: DebugColorFlags) -> DebugColorFlagsReturns the set difference of the two sets of flags.
impl SubAssign for DebugColorFlags
impl SubAssign for DebugColorFlagsfn sub_assign(&mut self, other: DebugColorFlags)
fn sub_assign(&mut self, other: DebugColorFlags)Disables all flags enabled in the set.
impl Not for DebugColorFlags
impl Not for DebugColorFlagstype Output = DebugColorFlags
The resulting type after applying the ! operator.
fn not(self) -> DebugColorFlags
fn not(self) -> DebugColorFlagsReturns the complement of this set of flags.
impl Extend<DebugColorFlags> for DebugColorFlags
impl Extend<DebugColorFlags> for DebugColorFlagsfn extend<T: IntoIterator<Item = DebugColorFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = DebugColorFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<DebugColorFlags> for DebugColorFlags
impl FromIterator<DebugColorFlags> for DebugColorFlagsfn from_iter<T: IntoIterator<Item = DebugColorFlags>>(
iterator: T
) -> DebugColorFlags
fn from_iter<T: IntoIterator<Item = DebugColorFlags>>(
iterator: T
) -> DebugColorFlagsCreates a value from an iterator. Read more
impl StaticType for DebugColorFlags[src]
impl StaticType for DebugColorFlagsfn static_type() -> Type[src]
fn static_type() -> TypeReturns the type identifier of Self.
impl<'a> FromValueOptional<'a> for DebugColorFlags[src]
impl<'a> FromValueOptional<'a> for DebugColorFlagsunsafe fn from_value_optional(value: &Value) -> Option<Self>[src]
unsafe fn from_value_optional(value: &Value) -> Option<Self>impl<'a> FromValue<'a> for DebugColorFlags[src]
impl<'a> FromValue<'a> for DebugColorFlagsunsafe fn from_value(value: &Value) -> Self[src]
unsafe fn from_value(value: &Value) -> Selfimpl SetValue for DebugColorFlags[src]
impl SetValue for DebugColorFlagsAuto Trait Implementations
impl Send for DebugColorFlags
impl Send for DebugColorFlagsimpl Sync for DebugColorFlags
impl Sync for DebugColorFlags