Struct rustdb::gentrans::GenTransaction

source ·
#[non_exhaustive]
pub struct GenTransaction { pub qy: GenQuery, pub rp: GenResponse, pub ext: Box<dyn Any + Send + Sync>, }
Expand description

Query + Response, implements Transaction.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§qy: GenQuery

Transaction Query.

§rp: GenResponse

Transaction Response.

§ext: Box<dyn Any + Send + Sync>

Transaction extension data.

Implementations§

source§

impl GenTransaction

source

pub fn new() -> Self

Construct.

Trait Implementations§

source§

impl Default for GenTransaction

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Transaction for GenTransaction

source§

fn arg(&mut self, kind: i64, s: &str) -> Rc<String>

ARG builtin function. Get path, query parameter, form value or cookie.
source§

fn status_code(&mut self, code: i64)

STATUSCODE builtin function. sets the response status code.
source§

fn header(&mut self, name: &str, value: &str)

HEADER builtin function, adds header to response.
source§

fn global(&self, kind: i64) -> i64

GLOBAL builtin function. Used to get request time.
source§

fn selected(&mut self, values: &[Value])

Append SELECT values to response body.
source§

fn set_error(&mut self, err: String)

Set the error string.
source§

fn get_error(&mut self) -> String

Get the error string.
source§

fn file_attr(&mut self, k: i64, x: i64) -> Rc<String>

Get file attribute ( One of name, content_type, file_name )
source§

fn file_content(&mut self, k: i64) -> Data

Get file content.
source§

fn set_extension(&mut self, ext: Box<dyn Any + Send + Sync>)

Set the extension.
source§

fn get_extension(&mut self) -> Box<dyn Any + Send + Sync>

Get the extension. Note: this takes ownership, so extension needs to be set afterwards.

Auto Trait Implementations§

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, 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.