[][src]Struct gstreamer::DebugCategory

pub struct DebugCategory(_);

Methods

impl DebugCategory[src]

pub fn new(
    name: &str,
    color: DebugColorFlags,
    description: Option<&str>
) -> DebugCategory
[src]

pub fn get(name: &str) -> Option<DebugCategory>[src]

pub fn get_threshold(self) -> DebugLevel[src]

pub fn set_threshold(self, threshold: DebugLevel)[src]

pub fn reset_threshold(self)[src]

pub fn get_color(self) -> DebugColorFlags[src]

pub fn get_name<'a>(self) -> &'a str[src]

pub fn get_description<'a>(self) -> Option<&'a str>[src]

pub fn log<O: IsA<Object>>(
    self,
    obj: Option<&O>,
    level: DebugLevel,
    file: &str,
    module: &str,
    line: u32,
    args: Arguments
)
[src]

Trait Implementations

impl Clone for DebugCategory[src]

impl Copy for DebugCategory[src]

impl Debug for DebugCategory[src]

impl Eq for DebugCategory[src]

impl PartialEq<DebugCategory> for DebugCategory[src]

impl Send for DebugCategory[src]

impl StructuralEq for DebugCategory[src]

impl StructuralPartialEq for DebugCategory[src]

impl Sync for DebugCategory[src]

Auto Trait Implementations

impl RefUnwindSafe for DebugCategory

impl Unpin for DebugCategory

impl UnwindSafe for DebugCategory

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.