Trait Indirection

Source
pub trait Indirection {
    type Output;

    // Required method
    fn indirection(self) -> Self::Output;
}
Expand description

Represents C++’s indirection operator (*a).

Required Associated Types§

Source

type Output

Output type.

Required Methods§

Source

fn indirection(self) -> Self::Output

Returns the object self is pointing to.

Implementors§