Struct crfsuite_sys::crfsuite_item_t [] [src]

#[repr(C)]
pub struct crfsuite_item_t { pub num_contents: c_int, pub cap_contents: c_int, pub contents: *mut crfsuite_attribute_t, }

An item. An item consists of an array of attributes.

Fields

Number of contents associated with the item.

Maximum number of contents (internal use).

Array of the attributes.

Trait Implementations

impl Debug for crfsuite_item_t
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for crfsuite_item_t
[src]

impl Clone for crfsuite_item_t
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations