Struct oo_bindgen::model::CollectionSettings
source · pub struct CollectionSettings {
pub create_function_suffix: Name,
pub add_function_suffix: Name,
pub destroy_function_suffix: Name,
}
Expand description
Settings that affect collection function naming
Fields§
§create_function_suffix: Name
name of the C function which creates a collection
is automatically generated as <c_ffi_prefix>_<collection_class_name>_<create_function_suffix>
add_function_suffix: Name
name of the C function which creates a collection
is automatically generated as <c_ffi_prefix>_<collection_class_name>_<add_function_suffix>
destroy_function_suffix: Name
name of the C function which destroys a collection
is automatically generated as <c_ffi_prefix>_<collection_class_name>_<destroy_function_suffix>
Implementations§
Trait Implementations§
source§impl Debug for CollectionSettings
impl Debug for CollectionSettings
source§impl Default for CollectionSettings
impl Default for CollectionSettings
source§fn default() -> CollectionSettings
fn default() -> CollectionSettings
Returns the “default value” for a type. Read more