pub trait TxnLogGetMutable<TID>: Sized {
// Required method
unsafe fn get_mutable_from_log(log: &TxnLog, ty: TID) -> *mut Self;
}Required Methods§
unsafe fn get_mutable_from_log(log: &TxnLog, ty: TID) -> *mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".