Docs.rs
  • lunatic-sqlite-api-0.13.3
    • lunatic-sqlite-api 0.13.3
    • Permalink
    • Docs.rs crate page
    • Apache-2.0/MIT
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • bkolobara
    • Dependencies
      • bincode ^1.3 normal
      • serde ^1.0 normal
      • anyhow ^1.0 normal
      • hash-map-id ^0.13 normal
      • lunatic-common-api ^0.13 normal
      • lunatic-error-api ^0.13 normal
      • lunatic-process ^0.13 normal
      • lunatic-process-api ^0.13 normal
      • sqlite-bindings-lunatic ^0.30.4 normal
      • wasmtime ^8 normal
    • Versions
    • 19.05% of the crate is documented
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

lunatic_sqlite_api0.13.3

SQLiteCtx

Required Methods

  • sqlite_connections
  • sqlite_connections_mut
  • sqlite_guest_allocator
  • sqlite_guest_allocator_mut
  • sqlite_statements
  • sqlite_statements_mut

Implementors

In crate lunatic_sqlite_api

lunatic_sqlite_api

Trait SQLiteCtx

Source
pub trait SQLiteCtx {
    // Required methods
    fn sqlite_connections(&self) -> &SQLiteConnections;
    fn sqlite_connections_mut(&mut self) -> &mut SQLiteConnections;
    fn sqlite_guest_allocator(&self) -> &SQLiteGuestAllocators;
    fn sqlite_guest_allocator_mut(&mut self) -> &mut SQLiteGuestAllocators;
    fn sqlite_statements(&self) -> &SQLiteStatements;
    fn sqlite_statements_mut(&mut self) -> &mut SQLiteStatements;
}

Required Methods§

Source

fn sqlite_connections(&self) -> &SQLiteConnections

Source

fn sqlite_connections_mut(&mut self) -> &mut SQLiteConnections

Source

fn sqlite_guest_allocator(&self) -> &SQLiteGuestAllocators

Source

fn sqlite_guest_allocator_mut(&mut self) -> &mut SQLiteGuestAllocators

Source

fn sqlite_statements(&self) -> &SQLiteStatements

Source

fn sqlite_statements_mut(&mut self) -> &mut SQLiteStatements

Implementors§