pub enum ProbeResult {
Ok,
Crashed,
TimedOut,
Failed(String),
}Expand description
The outcome of Vst3Host::probe_plugin — whether a plugin can be loaded safely.
Variants§
Ok
The plugin loaded successfully in an isolated process.
Crashed
The plugin crashed the isolated helper while loading (do not load in-process).
TimedOut
The plugin did not respond within the timeout.
Failed(String)
Loading failed with an error (not a crash) — message included.
Trait Implementations§
Source§impl Clone for ProbeResult
impl Clone for ProbeResult
Source§fn clone(&self) -> ProbeResult
fn clone(&self) -> ProbeResult
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 moreSource§impl Debug for ProbeResult
impl Debug for ProbeResult
impl Eq for ProbeResult
Source§impl PartialEq for ProbeResult
impl PartialEq for ProbeResult
impl StructuralPartialEq for ProbeResult
Auto Trait Implementations§
impl Freeze for ProbeResult
impl RefUnwindSafe for ProbeResult
impl Send for ProbeResult
impl Sync for ProbeResult
impl Unpin for ProbeResult
impl UnsafeUnpin for ProbeResult
impl UnwindSafe for ProbeResult
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