cfg_traits

Trait Target

Source
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§

Source

type BMut<'a>: DerefMut<Target = F::Block> where Self: 'a

Required Methods§

Source

fn block(&self) -> F::Block

Source

fn block_mut<'a>(&'a mut self) -> Self::BMut<'a>

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.

Implementors§