Enum gstreamer::FlowReturn[][src]

#[must_use]
#[non_exhaustive]pub enum FlowReturn {
    CustomSuccess2,
    CustomSuccess1,
    CustomSuccess,
    Ok,
    NotLinked,
    Flushing,
    Eos,
    NotNegotiated,
    Error,
    NotSupported,
    CustomError,
    CustomError1,
    CustomError2,
    // some variants omitted
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CustomSuccess2
CustomSuccess1
CustomSuccess
Ok
NotLinked
Flushing
Eos
NotNegotiated
Error
NotSupported
CustomError
CustomError1
CustomError2

Implementations

impl FlowReturn[src]

pub fn into_result(self) -> Result<FlowSuccess, FlowError>[src]

pub fn into_result_value<T, F: FnOnce() -> T>(
    self,
    func: F
) -> Result<T, FlowError>
[src]

pub fn from_error(v: FlowError) -> Self[src]

pub fn from_ok(v: FlowSuccess) -> Self[src]

Trait Implementations

impl Clone for FlowReturn[src]

impl Copy for FlowReturn[src]

impl Debug for FlowReturn[src]

impl Eq for FlowReturn[src]

impl<'a> From<&'a FlowError> for FlowReturn[src]

impl From<FlowError> for FlowReturn[src]

impl From<FlowError> for FlowReturn[src]

impl From<FlowSuccess> for FlowReturn[src]

impl From<Result<FlowSuccess, FlowError>> for FlowReturn[src]

impl<'a> FromValue<'a> for FlowReturn[src]

impl<'a> FromValueOptional<'a> for FlowReturn[src]

impl Hash for FlowReturn[src]

impl Ord for FlowReturn[src]

impl PartialEq<FlowReturn> for FlowReturn[src]

impl PartialOrd<FlowReturn> for FlowReturn[src]

impl SetValue for FlowReturn[src]

impl StaticType for FlowReturn[src]

impl StructuralEq for FlowReturn[src]

impl StructuralPartialEq for FlowReturn[src]

Auto Trait Implementations

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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?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.