Enum gstreamer::subclass::FlowError [−][src]
pub enum FlowError { Flushing, Eos, NotNegotiated(ErrorMessage), Error(ErrorMessage), }
Variants
NotNegotiated(ErrorMessage)
Error(ErrorMessage)
Trait Implementations
impl Error for FlowError
[src]
impl Error for FlowError
[src]fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str
1.0.0[src]
fn description(&self) -> &str
1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl<'a> From<&'a FlowError> for FlowReturn
[src]
impl<'a> From<&'a FlowError> for FlowReturn
[src]fn from(err: &FlowError) -> FlowReturn
[src]
fn from(err: &FlowError) -> FlowReturn
[src]Performs the conversion.
impl From<FlowError> for FlowReturn
[src]
impl From<FlowError> for FlowReturn
[src]impl Eq for FlowError
[src]
impl StructuralEq for FlowError
[src]
impl StructuralPartialEq for FlowError
[src]
Auto Trait Implementations
impl RefUnwindSafe for FlowError
impl Send for FlowError
impl Sync for FlowError
impl Unpin for FlowError
impl UnwindSafe for FlowError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more