Enum rusqlite::limits::Limit

source ·
#[non_exhaustive]
#[repr(i32)]
pub enum Limit { SQLITE_LIMIT_LENGTH = 0, SQLITE_LIMIT_SQL_LENGTH = 1, SQLITE_LIMIT_COLUMN = 2, SQLITE_LIMIT_EXPR_DEPTH = 3, SQLITE_LIMIT_COMPOUND_SELECT = 4, SQLITE_LIMIT_VDBE_OP = 5, SQLITE_LIMIT_FUNCTION_ARG = 6, SQLITE_LIMIT_ATTACHED = 7, SQLITE_LIMIT_LIKE_PATTERN_LENGTH = 8, SQLITE_LIMIT_VARIABLE_NUMBER = 9, SQLITE_LIMIT_TRIGGER_DEPTH = 10, SQLITE_LIMIT_WORKER_THREADS = 11, }
Available on crate feature limits only.
Expand description

Run-Time limit categories, for use with Connection::limit and Connection::set_limit.

See the official documentation for more information:

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

SQLITE_LIMIT_LENGTH = 0

The maximum size of any string or BLOB or table row, in bytes.

§

SQLITE_LIMIT_SQL_LENGTH = 1

The maximum length of an SQL statement, in bytes.

§

SQLITE_LIMIT_COLUMN = 2

The maximum number of columns in a table definition or in the result set of a SELECT or the maximum number of columns in an index or in an ORDER BY or GROUP BY clause.

§

SQLITE_LIMIT_EXPR_DEPTH = 3

The maximum depth of the parse tree on any expression.

§

SQLITE_LIMIT_COMPOUND_SELECT = 4

The maximum number of terms in a compound SELECT statement.

§

SQLITE_LIMIT_VDBE_OP = 5

The maximum number of instructions in a virtual machine program used to implement an SQL statement.

§

SQLITE_LIMIT_FUNCTION_ARG = 6

The maximum number of arguments on a function.

§

SQLITE_LIMIT_ATTACHED = 7

The maximum number of attached databases.

§

SQLITE_LIMIT_LIKE_PATTERN_LENGTH = 8

The maximum length of the pattern argument to the LIKE or GLOB operators.

§

SQLITE_LIMIT_VARIABLE_NUMBER = 9

The maximum index number of any parameter in an SQL statement.

§

SQLITE_LIMIT_TRIGGER_DEPTH = 10

The maximum depth of recursion for triggers.

§

SQLITE_LIMIT_WORKER_THREADS = 11

The maximum number of auxiliary worker threads that a single prepared statement may start.

Trait Implementations§

source§

impl Clone for Limit

source§

fn clone(&self) -> Limit

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for Limit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for Limit

Auto Trait Implementations§

§

impl RefUnwindSafe for Limit

§

impl Send for Limit

§

impl Sync for Limit

§

impl Unpin for Limit

§

impl UnwindSafe for Limit

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.