[][src]Enum gstreamer::structure::GetError

pub enum GetError<'name> {
    FieldNotFound {
        name: &'name str,
    },
    ValueGetError {
        name: &'name str,
        value_get_error: GetError,
    },
}

Variants

FieldNotFound

Fields of FieldNotFound

name: &'name str
ValueGetError

Fields of ValueGetError

name: &'name strvalue_get_error: GetError

Trait Implementations

impl<'name> Clone for GetError<'name>[src]

impl<'name> Debug for GetError<'name>[src]

impl<'name> Display for GetError<'name>[src]

impl<'name> Eq for GetError<'name>[src]

impl<'name> Error for GetError<'name>[src]

impl<'name> PartialEq<GetError<'name>> for GetError<'name>[src]

impl<'name> StructuralEq for GetError<'name>[src]

impl<'name> StructuralPartialEq for GetError<'name>[src]

Auto Trait Implementations

impl<'name> RefUnwindSafe for GetError<'name>

impl<'name> Send for GetError<'name>

impl<'name> Sync for GetError<'name>

impl<'name> Unpin for GetError<'name>

impl<'name> UnwindSafe for GetError<'name>

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> ToString for T where
    T: Display + ?Sized
[src]

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.