Skip to main content

luaur_analysis/methods/
txn_log_get.rs

1use crate::methods::txn_log_get_mutable::TxnLogGetMutable;
2use crate::records::txn_log::TxnLog;
3
4impl TxnLog {
5    pub fn txn_log_get<T, TID>(&self, _ty: TID) -> *const T
6    where
7        T: TxnLogGetMutable<TID>,
8    {
9        self.txn_log_get_mutable::<T, TID>(_ty) as *const T
10    }
11}