Struct cbindgen::StructConfig

source ·
pub struct StructConfig {
    pub rename_fields: Option<RenameRule>,
    pub derive_constructor: bool,
    pub derive_eq: bool,
    pub derive_neq: bool,
    pub derive_lt: bool,
    pub derive_lte: bool,
    pub derive_gt: bool,
    pub derive_gte: bool,
}
Expand description

Settings to apply to generated structs.

Fields§

§rename_fields: Option<RenameRule>

The rename rule to apply to the name of struct fields

§derive_constructor: bool

Whether to generate a constructor for the struct (which takes arguments to initialize all the members)

§derive_eq: bool

Whether to generate a piecewise equality operator

§derive_neq: bool

Whether to generate a piecewise inequality operator

§derive_lt: bool

Whether to generate a less than operator on structs with one field

§derive_lte: bool

Whether to generate a less than or equal to operator on structs with one field

§derive_gt: bool

Whether to generate a greater than operator on structs with one field

§derive_gte: bool

Whether to generate a greater than or equal to operator on structs with one field

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.