Enum sqlite::State [] [src]

pub enum State {
    Row,
    Done,
}

A state of a prepared statement.

Variants

Row

There is a row available for reading.

Done

The statement has been entirely evaluated.

Trait Implementations

impl Eq for State
[src]

impl PartialEq for State
[src]

fn eq(&self, __arg_0: &State) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for State
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for State
[src]

impl Clone for State
[src]

fn clone(&self) -> State

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more