pub trait ValueRefTryGet<'r, DB, T>where DB: Database, T: Decode<'r, DB> + Type<DB>,{ // Required method fn try_get(self) -> Result<T, Error>; }