Struct static_init::Static[][src]

pub struct Static<T>(_);

The actual type of mutable dynamic statics.

It implements Deref<Target=T> and DerefMut.

All associated functions are only usefull for the implementation of the dynamic proc macro attribute

Implementations

impl<T> Static<T>[src]

pub const fn uninit() -> Self[src]

pub const fn from(v: T) -> Self[src]

pub unsafe fn set_to(this: &mut Self, v: T)[src]

pub unsafe fn drop(this: &mut Self)[src]

Trait Implementations

impl<T> Deref for Static<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Static<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Static<T> where
    T: RefUnwindSafe

impl<T> Send for Static<T> where
    T: Send

impl<T> Sync for Static<T> where
    T: Sync

impl<T> Unpin for Static<T> where
    T: Unpin

impl<T> UnwindSafe for Static<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.