pub trait Indirection {
type Output;
// Required method
fn indirection(self) -> Self::Output;
}
Expand description
Represents C++’s indirection operator (*a
).
Required Associated Types§
Required Methods§
Sourcefn indirection(self) -> Self::Output
fn indirection(self) -> Self::Output
Returns the object self
is pointing to.