[][src]Struct gluon_vm::gc::WriteOnly

pub struct WriteOnly<'s, T: ?Sized + 's>(_, _);

Pointer type which can only be written to.

Methods

impl<'s, T: ?Sized> WriteOnly<'s, T>[src]

pub fn as_mut_ptr(&mut self) -> *mut T[src]

Retrieves the pointer allowing it to be manipulated freely. As it points to uninitialized data care must be taken so to not read it before it has been initialized

impl<'s, T> WriteOnly<'s, T>[src]

pub fn write(self, t: T) -> &'s mut T[src]

Writes a value to the pointer and returns a pointer to the now initialized value.

impl<'s, T: Copy> WriteOnly<'s, [T]>[src]

pub fn write_slice(self, s: &[T]) -> &'s mut [T][src]

impl<'s> WriteOnly<'s, str>[src]

pub fn write_str(self, s: &str) -> &'s mut str[src]

Auto Trait Implementations

impl<'s, T> !Send for WriteOnly<'s, T>

impl<'s, T> !Sync for WriteOnly<'s, T>

Blanket Implementations

impl<D, T> FromPtr for T[src]

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<Choices> CoproductSubsetter for Choices[src]

type Remainder = Choices

impl<Source> Sculptor for Source[src]

type Remainder = Source

impl<T, U, I> LiftInto for T where
    U: LiftFrom<T, I>, 
[src]

impl<T> Any for T where
    T: Any
[src]