[][src]Struct rocks::db::ColumnFamilyHandle

pub struct ColumnFamilyHandle { /* fields omitted */ }

Handle for a opened column family

Implementations

impl ColumnFamilyHandle[src]

pub fn name(&self) -> &str[src]

Returns the name of the column family associated with the current handle.

pub fn id(&self) -> u32[src]

Returns the ID of the column family associated with the current handle.

Trait Implementations

impl AsRef<ColumnFamilyHandle> for ColumnFamilyHandle[src]

impl AsRef<ColumnFamilyHandle> for ColumnFamily[src]

impl Debug for ColumnFamilyHandle[src]

impl Drop for ColumnFamilyHandle[src]

Auto Trait Implementations

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.