tauri::ipc

Trait IpcResponse

Source
pub trait IpcResponse {
    // Required method
    fn body(self) -> Result<InvokeResponseBody>;
}
Expand description

Marks a type as a response to an IPC call.

Required Methods§

Source

fn body(self) -> Result<InvokeResponseBody>

Resolve the IPC response body.

Implementors§