[][src]Trait convute::convert::TransmuteRef

pub trait TransmuteRef<T>: Transmute<T> {
    fn transmute_ref(&self) -> &T;
}

Don't implement this trait directly, implement Transmute or TryTransmute instead.

Required methods

fn transmute_ref(&self) -> &T

Loading content...

Implementors

impl<A, B> TransmuteRef<B> for A where
    A: Transmute<B>, 
[src]

Loading content...