[][src]Trait aliasable_deref_trait::IntoAliasable

pub trait IntoAliasable {
    type Target: AliasableDeref;
    fn into_aliasable(self) -> Self::Target;
}

Helper trait for converting non-aliasable types into their aliasable counterparts.

Associated Types

type Target: AliasableDeref

The aliasable type to convert to.

Loading content...

Required methods

fn into_aliasable(self) -> Self::Target

Convert into an aliasable pointer type.

Loading content...

Implementors

impl<T> IntoAliasable for T where
    T: AliasableDeref
[src]

type Target = T

Loading content...