pub enum DecodebinError {
NoChain,
Graph(GraphError),
}Expand description
Why Registry::decodebin could not splice a chain.
Variants§
NoChain
No chain of registered elements converts the input caps to the target within the depth bound.
Graph(GraphError)
A graph link failed (e.g. a pad was out of range or already linked).
Trait Implementations§
Source§impl Debug for DecodebinError
impl Debug for DecodebinError
Source§impl From<DecodebinError> for UriError
impl From<DecodebinError> for UriError
Source§fn from(e: DecodebinError) -> Self
fn from(e: DecodebinError) -> Self
Converts to this type from the input type.
Source§impl From<DecodebinError> for PlaybinError
impl From<DecodebinError> for PlaybinError
Source§fn from(e: DecodebinError) -> Self
fn from(e: DecodebinError) -> Self
Converts to this type from the input type.
Source§impl From<DecodebinError> for PlaybinGraphError
impl From<DecodebinError> for PlaybinGraphError
Source§fn from(e: DecodebinError) -> Self
fn from(e: DecodebinError) -> Self
Converts to this type from the input type.
Source§impl From<DecodebinError> for AutoplugError
impl From<DecodebinError> for AutoplugError
Source§fn from(e: DecodebinError) -> Self
fn from(e: DecodebinError) -> Self
Converts to this type from the input type.
Source§impl From<GraphError> for DecodebinError
impl From<GraphError> for DecodebinError
Source§fn from(e: GraphError) -> Self
fn from(e: GraphError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecodebinError
impl RefUnwindSafe for DecodebinError
impl Send for DecodebinError
impl Sync for DecodebinError
impl Unpin for DecodebinError
impl UnsafeUnpin for DecodebinError
impl UnwindSafe for DecodebinError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more