pub enum PlaybinError {
UnknownSource,
Decode(DecodebinError),
}Expand description
Why Registry::build_playbin could not assemble a graph.
Variants§
UnknownSource
No source is registered under the requested name.
Decode(DecodebinError)
The source’s caps could not be decoded to the target (wraps the
decodebin failure: no chain, or a graph link error).
Trait Implementations§
Source§impl Debug for PlaybinError
impl Debug for PlaybinError
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.
Auto Trait Implementations§
impl Freeze for PlaybinError
impl RefUnwindSafe for PlaybinError
impl Send for PlaybinError
impl Sync for PlaybinError
impl Unpin for PlaybinError
impl UnsafeUnpin for PlaybinError
impl UnwindSafe for PlaybinError
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