[][src]Struct crfsuite_sys::crfsuite_instance_t

#[repr(C)]
pub struct crfsuite_instance_t {
    pub num_items: c_int,
    pub cap_items: c_int,
    pub items: *mut crfsuite_item_t,
    pub labels: *mut c_int,
    pub weight: floatval_t,
    pub group: c_int,
}

An instance (sequence of items and labels). An instance consists of a sequence of items and labels.

Fields

num_items: c_int

Number of items/labels in the sequence.

cap_items: c_int

Maximum number of items/labels (internal use).

items: *mut crfsuite_item_t

Array of the item sequence.

labels: *mut c_int

Array of the label sequence.

weight: floatval_t

Instance weight.

group: c_int

Group ID of the instance.

Trait Implementations

impl Clone for crfsuite_instance_t[src]

impl Copy for crfsuite_instance_t[src]

impl Debug for crfsuite_instance_t[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> 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.