Struct reql::Connection [] [src]

pub struct Connection(_);

The connection pool returned by the connect command

This connection pool is designed to make it very easy to pass around. It doesn't carry the actual connections themselves. Instead it is simply a reference to the actual underlying connection pool. As such, you can clone or copy it.

Trait Implementations

impl IntoArg for Connection
[src]

[src]

Converts a supported type into Arg

impl Debug for Connection
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Connection
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Connection
[src]

impl PartialEq for Connection
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Connection
[src]

impl Hash for Connection
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Connection

impl Sync for Connection