Skip to main content

guard

Function guard 

Source
pub fn guard<T>(f: impl FnOnce() -> Result<T>) -> Result<T>
Expand description

Run plugin code, converting a panic into an error rather than unwinding across the FFI boundary (which is UB).

ยงErrors

Returns whatever f returns, or Other("plugin panicked").