[][src]Struct fm_plugin::ffi::calc_engine::ExprEnv

pub struct ExprEnv { /* fields omitted */ }

Implementations

impl ExprEnv[src]

pub fn new() -> Self[src]

pub fn from_ptr(ptr: *const fmx_ExprEnv) -> Self[src]

pub fn session_id(&self) -> u64[src]

pub fn file_id(&self) -> u64[src]

pub fn execute_file_sql_text_result(
    &self,
    expression: Text,
    file_name: Text,
    parameters: DataVect,
    result: &mut Data,
    col_sep: u16,
    row_sep: u16
) -> FMError
[src]

pub fn execute_file_sql(
    &self,
    expression: Text,
    file_name: Text,
    parameters: DataVect,
    result: &mut RowVect
) -> FMError
[src]

pub fn eval_get(&self, func: GetFunction) -> Data[src]

pub fn evaluate<T: ToText>(&self, expression: T) -> Data[src]

pub fn from_fm_path(&self, path: Text, format: FilePathFormat) -> Text[src]

pub fn to_fm_path(&self, path: Text, format: FilePathFormat) -> Text[src]

Trait Implementations

impl Default for ExprEnv[src]

impl Drop for ExprEnv[src]

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.