[][src]Union static_init::Static

pub union Static<T> {
    // some fields omitted
}

The actual type of "dynamic" mutable 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> Send for Static<T> where
    T: Send
[src]

impl<T> Sync for Static<T> where
    T: Sync
[src]

impl<T> Unpin for Static<T> where
    T: Unpin
[src]

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.