pub enum PluginCapability {
PostDownloadProcessor,
PipelineEventHook,
BenchmarkSink,
NativeDecoder,
FrameProcessor,
AudioProcessor,
SourceNormalizerPacket,
SourceNormalizerResource,
}Expand description
Capability families that can be exported by a native Rust plugin.
Variants§
PostDownloadProcessor
PipelineEventHook
BenchmarkSink
NativeDecoder
FrameProcessor
AudioProcessor
SourceNormalizerPacket
SourceNormalizerResource
Trait Implementations§
Source§impl Clone for PluginCapability
impl Clone for PluginCapability
Source§fn clone(&self) -> PluginCapability
fn clone(&self) -> PluginCapability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PluginCapability
Source§impl Debug for PluginCapability
impl Debug for PluginCapability
impl Eq for PluginCapability
Source§impl From<ExportInterfaceKind> for PluginCapability
impl From<ExportInterfaceKind> for PluginCapability
Source§impl Hash for PluginCapability
impl Hash for PluginCapability
Source§impl PartialEq for PluginCapability
impl PartialEq for PluginCapability
impl StructuralPartialEq for PluginCapability
Auto Trait Implementations§
impl Freeze for PluginCapability
impl RefUnwindSafe for PluginCapability
impl Send for PluginCapability
impl Sync for PluginCapability
impl Unpin for PluginCapability
impl UnsafeUnpin for PluginCapability
impl UnwindSafe for PluginCapability
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