[][src]Struct c_bridge::array::Array

#[repr(C)]
pub struct Array<T> {
    pub dealloc: unsafe extern "C" fn(_: *mut *mut c_void),
    pub len: unsafe extern "C" fn(_: *const c_void) -> usize,
    pub data: unsafe extern "C" fn(_: *const c_void) -> *const T,
    pub data_mut: unsafe extern "C" fn(_: *mut c_void) -> *mut T,
    pub object: *mut c_void,
    // some fields omitted
}

A FFI-compatible data array which can be resized and derefs to a slice

Fields

dealloc: unsafe extern "C" fn(_: *mut *mut c_void)

The deallocator if the object is owned

len: unsafe extern "C" fn(_: *const c_void) -> usize

The length of the data array in bytes

data: unsafe extern "C" fn(_: *const c_void) -> *const T

A pointer to the underlying data

data_mut: unsafe extern "C" fn(_: *mut c_void) -> *mut T

A mutable pointer to the underlying data

object: *mut c_void

The underlying object (implementation dependent)

Methods

impl<T> Array<T>[src]

pub fn len(&self) -> usize[src]

The length of the data array

Trait Implementations

impl<T> Drop for Array<T>[src]

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

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

type Target = [T]

The resulting type after dereferencing.

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

Auto Trait Implementations

impl<T> !Send for Array<T>

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

impl<T> !Sync for Array<T>

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

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

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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