Struct mimir::ObjectType [] [src]

pub struct ObjectType { /* fields omitted */ }

Object type handles are used to represent types such as those created by the SQL command CREATE OR REPLACE TYPE.

Methods

impl ObjectType
[src]

Adds a reference to the object type. This is intended for situations where a reference to the object type needs to be maintained independently of the reference returned when the object type was created.

Creates an object of the specified type and returns a reference to it. This reference should be released as soon as it is no longer needed.

Returns the list of attributes that belong to the object type.

Returns information about the object type.

Releases a reference to the object type. A count of the references to the object type is maintained and when this count reaches zero, the memory associated with the object type is freed.

Trait Implementations

impl Debug for ObjectType
[src]

Formats the value using the given formatter.

impl From<*mut ODPIObjectType> for ObjectType
[src]

Performs the conversion.