pub trait SalsaAsDeref {
type AsDeref<'a>
where Self: 'a;
// Required method
fn as_deref(&self) -> Self::AsDeref<'_>;
}Expand description
Used to determine the return type and value for tracked fields and functions annotated with returns(as_deref).
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".