[][src]Struct gdnative_core::access::Aligned

pub struct Aligned<G> { /* fields omitted */ }

An pool array access that is (assumed to be) aligned.

Methods

impl<G: Guard> Aligned<G>[src]

pub fn as_slice(&self) -> &[G::Target][src]

pub fn as_mut_slice(&mut self) -> &mut [G::Target] where
    G: WritePtr, 
[src]

Trait Implementations

impl<G: Clone> Clone for Aligned<G>[src]

impl<G: Debug> Debug for Aligned<G>[src]

impl<G: Guard> Deref for Aligned<G>[src]

type Target = [G::Target]

The resulting type after dereferencing.

impl<G: Guard + WritePtr> DerefMut for Aligned<G>[src]

impl<G: Eq> Eq for Aligned<G>[src]

impl<G: Ord> Ord for Aligned<G>[src]

impl<G: PartialEq> PartialEq<Aligned<G>> for Aligned<G>[src]

impl<G: PartialOrd> PartialOrd<Aligned<G>> for Aligned<G>[src]

impl<G> StructuralEq for Aligned<G>[src]

impl<G> StructuralPartialEq for Aligned<G>[src]

Auto Trait Implementations

impl<G> RefUnwindSafe for Aligned<G> where
    G: RefUnwindSafe

impl<G> Send for Aligned<G> where
    G: Send

impl<G> Sync for Aligned<G> where
    G: Sync

impl<G> Unpin for Aligned<G> where
    G: Unpin

impl<G> UnwindSafe for Aligned<G> where
    G: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.