Struct gstreamer::DebugColorFlags [−]
pub struct DebugColorFlags { /* fields omitted */ }
Methods
impl DebugColorFlags
impl DebugColorFlags
pub 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() -> DebugColorFlags
Returns an empty set of flags.
pub fn all() -> DebugColorFlags
pub fn all() -> DebugColorFlags
Returns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32
Returns 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) -> DebugColorFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> bool
Returns true
if all flags are currently set.
pub fn intersects(&self, other: DebugColorFlags) -> bool
pub fn intersects(&self, other: DebugColorFlags) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: DebugColorFlags) -> bool
pub fn contains(&self, other: DebugColorFlags) -> bool
Returns 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 DebugColorFlags
impl PartialEq for DebugColorFlags
impl PartialEq for DebugColorFlags
fn eq(&self, other: &DebugColorFlags) -> bool
fn eq(&self, other: &DebugColorFlags) -> bool
This 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) -> bool
This method tests for !=
.
impl Eq for DebugColorFlags
impl Eq for DebugColorFlags
impl Clone for DebugColorFlags
impl Clone for DebugColorFlags
fn clone(&self) -> DebugColorFlags
fn clone(&self) -> DebugColorFlags
Returns 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 DebugColorFlags
fn 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) -> bool
This 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) -> bool
This 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) -> bool
This 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) -> bool
This 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 DebugColorFlags
fn cmp(&self, other: &DebugColorFlags) -> Ordering
fn cmp(&self, other: &DebugColorFlags) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for DebugColorFlags
impl Hash for DebugColorFlags
fn 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 DebugColorFlags
impl Binary for DebugColorFlags
impl Binary for DebugColorFlags
impl Octal for DebugColorFlags
impl Octal for DebugColorFlags
impl LowerHex for DebugColorFlags
impl LowerHex for DebugColorFlags
impl UpperHex for DebugColorFlags
impl UpperHex for DebugColorFlags
impl BitOr for DebugColorFlags
impl BitOr for DebugColorFlags
type Output = DebugColorFlags
The resulting type after applying the |
operator.
fn bitor(self, other: DebugColorFlags) -> DebugColorFlags
fn bitor(self, other: DebugColorFlags) -> DebugColorFlags
Returns the union of the two sets of flags.
impl BitOrAssign for DebugColorFlags
impl BitOrAssign for DebugColorFlags
fn 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 DebugColorFlags
type Output = DebugColorFlags
The resulting type after applying the ^
operator.
fn bitxor(self, other: DebugColorFlags) -> DebugColorFlags
fn bitxor(self, other: DebugColorFlags) -> DebugColorFlags
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign for DebugColorFlags
impl BitXorAssign for DebugColorFlags
fn 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 DebugColorFlags
type Output = DebugColorFlags
The resulting type after applying the &
operator.
fn bitand(self, other: DebugColorFlags) -> DebugColorFlags
fn bitand(self, other: DebugColorFlags) -> DebugColorFlags
Returns the intersection between the two sets of flags.
impl BitAndAssign for DebugColorFlags
impl BitAndAssign for DebugColorFlags
fn 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 DebugColorFlags
type Output = DebugColorFlags
The resulting type after applying the -
operator.
fn sub(self, other: DebugColorFlags) -> DebugColorFlags
fn sub(self, other: DebugColorFlags) -> DebugColorFlags
Returns the set difference of the two sets of flags.
impl SubAssign for DebugColorFlags
impl SubAssign for DebugColorFlags
fn 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 DebugColorFlags
type Output = DebugColorFlags
The resulting type after applying the !
operator.
fn not(self) -> DebugColorFlags
fn not(self) -> DebugColorFlags
Returns the complement of this set of flags.
impl Extend<DebugColorFlags> for DebugColorFlags
impl Extend<DebugColorFlags> for DebugColorFlags
fn 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 DebugColorFlags
fn from_iter<T: IntoIterator<Item = DebugColorFlags>>(
iterator: T
) -> DebugColorFlags
fn from_iter<T: IntoIterator<Item = DebugColorFlags>>(
iterator: T
) -> DebugColorFlags
Creates a value from an iterator. Read more
impl StaticType for DebugColorFlags
[src]
impl StaticType for DebugColorFlags
fn static_type() -> Type
[src]
fn static_type() -> Type
Returns the type identifier of Self
.
impl<'a> FromValueOptional<'a> for DebugColorFlags
[src]
impl<'a> FromValueOptional<'a> for DebugColorFlags
unsafe 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 DebugColorFlags
unsafe fn from_value(value: &Value) -> Self
[src]
unsafe fn from_value(value: &Value) -> Self
impl SetValue for DebugColorFlags
[src]
impl SetValue for DebugColorFlags
Auto Trait Implementations
impl Send for DebugColorFlags
impl Send for DebugColorFlags
impl Sync for DebugColorFlags
impl Sync for DebugColorFlags