[][src]Trait ffi_convert::CDrop

pub trait CDrop {
    fn do_drop(&mut self) -> Result<(), Error>;
}

Trait showing that the C-like struct implementing it can free up its part of memory that are not managed by Rust.

Required methods

fn do_drop(&mut self) -> Result<(), Error>

Loading content...

Implementations on Foreign Types

impl CDrop for usize[src]

impl CDrop for u8[src]

impl CDrop for i16[src]

impl CDrop for u16[src]

impl CDrop for i32[src]

impl CDrop for u32[src]

impl CDrop for i64[src]

impl CDrop for u64[src]

impl CDrop for f32[src]

impl CDrop for f64[src]

impl CDrop for CString[src]

Loading content...

Implementors

impl CDrop for CStringArray[src]

impl<T> CDrop for CArray<T>[src]

impl<T> CDrop for CRange<T>[src]

Loading content...