[][src]Enum gstreamer::FlowReturn

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

The result of passing data to a pad.

Note that the custom return values should not be exposed outside of the element scope.

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

Pre-defined custom success code.

CustomSuccess1

Pre-defined custom success code (define your custom success code to this to avoid compiler warnings).

CustomSuccess

Elements can use values starting from this (and higher) to define custom success codes.

Ok

Data passing was ok.

NotLinked

Pad is not linked.

Flushing

Pad is flushing.

Eos

Pad is EOS.

NotNegotiated

Pad is not negotiated.

Error

Some (fatal) error occurred. Element generating this error should post an error message with more details.

NotSupported

This operation is not supported.

CustomError

Elements can use values starting from this (and lower) to define custom error codes.

CustomError1

Pre-defined custom error code (define your custom error code to this to avoid compiler warnings).

CustomError2

Pre-defined custom error code.

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

impl RefUnwindSafe for FlowReturn

impl Send for FlowReturn

impl Sync for FlowReturn

impl Unpin for FlowReturn

impl UnwindSafe for FlowReturn

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.