[]Struct jni_android_sys::android::database::sqlite::SQLiteQuery

#[repr(transparent)]
pub struct SQLiteQuery(_);

public final class SQLiteQuery

Required feature: "android-database-sqlite-SQLiteQuery"

Methods

impl SQLiteQuery

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

Methods from Deref<Target = SQLiteProgram>

pub fn getUniqueId<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

Deprecated

pub fn bindNull<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindLong<'env>(
    &'env self,
    arg0: i32,
    arg1: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindDouble<'env>(
    &'env self,
    arg0: i32,
    arg1: f64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindString<'env>(
    &'env self,
    arg0: i32,
    arg1: impl Into<Option<&'env String>>
) -> Result<(), Local<'env, Throwable>>
[src]

bindString

Required features: "java-lang-String"

pub fn bindBlob<'env>(
    &'env self,
    arg0: i32,
    arg1: impl Into<Option<&'env ByteArray>>
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn clearBindings<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn bindAllArgsAsStrings<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ObjectArray<String, Throwable>>>
) -> Result<(), Local<'env, Throwable>>
[src]

bindAllArgsAsStrings

Required features: "java-lang-String"

Trait Implementations

impl AsJValue for SQLiteQuery

impl AsValidJObjectAndEnv for SQLiteQuery

impl Deref for SQLiteQuery

type Target = SQLiteProgram

The resulting type after dereferencing.

impl JniType for SQLiteQuery

Auto Trait Implementations

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 = Infallible

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.