[][src]Struct rusqlite::functions::Context

pub struct Context<'a> { /* fields omitted */ }

Context is a wrapper for the SQLite function evaluation context.

Methods

impl<'_> Context<'_>[src]

pub fn len(&self) -> usize[src]

Returns the number of arguments to the function.

pub fn is_empty(&self) -> bool[src]

Returns true when there is no argument.

pub fn get<T: FromSql>(&self, idx: usize) -> Result<T>[src]

Returns the idxth argument as a T.

Failure

Will panic if idx is greater than or equal to self.len().

Will return Err if the underlying SQLite type cannot be converted to a T.

pub fn get_raw(&self, idx: usize) -> ValueRef[src]

Returns the idxth argument as a ValueRef.

Failure

Will panic if idx is greater than or equal to self.len().

pub fn set_aux<T: 'static>(&self, arg: c_int, value: T)[src]

Sets the auxilliary data associated with a particular parameter. See https://www.sqlite.org/c3ref/get_auxdata.html for a discussion of this feature, or the unit tests of this module for an example.

pub fn get_aux<T: 'static>(&self, arg: c_int) -> Result<Option<&T>>[src]

Gets the auxilliary data that was associated with a given parameter via set_aux. Returns Ok(None) if no data has been associated, and .

Auto Trait Implementations

impl<'a> RefUnwindSafe for Context<'a>

impl<'a> !Send for Context<'a>

impl<'a> !Sync for Context<'a>

impl<'a> Unpin for Context<'a>

impl<'a> UnwindSafe for Context<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.