pub trait Target<F: Func + ?Sized>: Term<F, Target = Self> {
type BMut<'a>: DerefMut<Target = F::Block>
where Self: 'a;
// Required methods
fn block(&self) -> F::Block;
fn block_mut<'a>(&'a mut self) -> Self::BMut<'a>;
}
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.