pub enum Request {
Ping,
GetMetadata {
plugin_id: u32,
},
Instantiate {
plugin_id: u32,
},
Process {
plugin_id: u32,
sample_count: u32,
},
}Expand description
A host→plugin IPC request.
Variants§
Ping
Liveness check; the plugin responds with Response::Pong.
GetMetadata
Ask the plugin for its static metadata.
Instantiate
Create a fresh audio-node instance.
Process
Run one process cycle.
Trait Implementations§
impl Eq for Request
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
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