[][src]Struct in3_sys::item

#[repr(C)]pub struct item {
    pub data: *mut u8,
    pub len: u32,
    pub key: d_key_t,
}

a token holding any kind of value.

use d_type, d_len or the cast-function to get the value.

Fields

data: *mut u8

< the byte or string-data

len: u32

< the length of the content (or number of properties) depending + type.

key: d_key_t

< the key of the property.

Trait Implementations

impl Clone for item[src]

impl Copy for item[src]

impl Debug for item[src]

Auto Trait Implementations

impl !Send for item

impl !Sync for item

impl Unpin for item

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.