pub trait TxExt {
type Const;
// Required method
fn to_const(self) -> Self::Const;
}Expand description
Extension trait for Rc and Arc that allows up-casting a reference to
ReadTransaction or WriteTransaction to ConstTransaction.