Type Alias DataUnsafe

Source
pub type DataUnsafe<T> = *const T;
Expand description

A pointer to shared data which provides no protection against outliving its library.

Trait Implementations§

Source§

impl<'a, T> Symbol<&'a T> for DataUnsafe<T>

Source§

unsafe fn get(&self) -> &'a T

Provides access to the data that this symbol references. Read more