[][src]Trait cpp_core::ops::Indirection

pub trait Indirection {
    type Output;
    unsafe fn indirection(&self) -> Self::Output;
}

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

Associated Types

type Output

Output type.

Loading content...

Required methods

unsafe fn indirection(&self) -> Self::Output

Returns the object self is pointing to.

Loading content...

Implementors

Loading content...