Skip to main content

PreparedOperationHandle

Type Alias PreparedOperationHandle 

Source
pub type PreparedOperationHandle = Arc<dyn PreparedOperation>;
Expand description

Shared prepared-operation handle.

§Examples

use std::fmt::Debug;
use tenferro_runtime::PreparedOperationHandle;

fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationHandle>();

Aliased Type§

pub struct PreparedOperationHandle { /* private fields */ }