Struct mimir::Context [] [src]

pub struct Context { /* fields omitted */ }

This structure represents the context in which all activity in the library takes place.

Methods

impl Context
[src]

Create a new Context struct.

Return information about the version of the Oracle Client that is being used.

Returns error information for the last error that was raised by the library. This function must be called with the same thread that generated the error. It must also be called before any other ODPI-C library calls are made on the calling thread since the error information specific to that thread is cleared at the start of every ODPI-C function call.

Initializes the CommonCreate structure to default values.

Initializes the ConnCreate structure to default values.

Initializes the PoolCreate structure to default values.

Initializes the SubscrCreate struct to default values.

Trait Implementations

impl Clone for Context
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Context
[src]

Formats the value using the given formatter.

impl Drop for Context
[src]

A method called when the value goes out of scope. Read more