Struct crfsuite_sys::crfsuite_data_t [] [src]

#[repr(C)]
pub struct crfsuite_data_t { pub num_instances: c_int, pub cap_instances: c_int, pub instances: *mut crfsuite_instance_t, pub attrs: *mut crfsuite_dictionary_t, pub labels: *mut crfsuite_dictionary_t, }

A data set. A data set consists of an array of instances and dictionary objects for attributes and labels.

Fields

Number of instances.

Maximum number of instances (internal use).

Array of instances.

Dictionary object for attributes.

Dictionary object for labels.

Trait Implementations

impl Debug for crfsuite_data_t
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for crfsuite_data_t
[src]

impl Clone for crfsuite_data_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