pub enum PluginInvocationWorkload {
RealtimeMedia,
Observer,
Offline,
}Expand description
Workload class used to select a plugin invocation transport.
Variants§
RealtimeMedia
Latency-sensitive media decode, processing, or normalization.
Observer
Bounded observation of runtime events and diagnostics.
Offline
Bounded work outside the realtime media path.
Trait Implementations§
Source§impl Clone for PluginInvocationWorkload
impl Clone for PluginInvocationWorkload
Source§fn clone(&self) -> PluginInvocationWorkload
fn clone(&self) -> PluginInvocationWorkload
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 PluginInvocationWorkload
Source§impl Debug for PluginInvocationWorkload
impl Debug for PluginInvocationWorkload
Source§impl<'de> Deserialize<'de> for PluginInvocationWorkload
impl<'de> Deserialize<'de> for PluginInvocationWorkload
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PluginInvocationWorkload
Source§impl Hash for PluginInvocationWorkload
impl Hash for PluginInvocationWorkload
Source§impl PartialEq for PluginInvocationWorkload
impl PartialEq for PluginInvocationWorkload
Source§impl Serialize for PluginInvocationWorkload
impl Serialize for PluginInvocationWorkload
impl StructuralPartialEq for PluginInvocationWorkload
Auto Trait Implementations§
impl Freeze for PluginInvocationWorkload
impl RefUnwindSafe for PluginInvocationWorkload
impl Send for PluginInvocationWorkload
impl Sync for PluginInvocationWorkload
impl Unpin for PluginInvocationWorkload
impl UnsafeUnpin for PluginInvocationWorkload
impl UnwindSafe for PluginInvocationWorkload
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