Struct mimir::ODPIObjectAttrInfo [] [src]

#[repr(C)]
pub struct ODPIObjectAttrInfo { pub name: *const c_char, pub name_length: u32, pub type_info: ODPIDataTypeInfo, }

This structure is used for passing information about an object type from ODPI-C. It is used by the function ObjectAttr::get_info().

Fields

Specifies the name of the attribute, as a byte string in the encoding used for CHAR data.

Specifies the length of the name member, in bytes.

Specifices the Oracle type of the attribute. It will be one of the values from the enumeration ODPIOracleTypeNum.

Trait Implementations

impl Clone for ODPIObjectAttrInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ODPIObjectAttrInfo
[src]

impl Debug for ODPIObjectAttrInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ODPIObjectAttrInfo
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations