pub struct FunctionRegistry { /* private fields */ }Expand description
Registry for user-defined functions and procedures
Implementations§
Source§impl FunctionRegistry
impl FunctionRegistry
Sourcepub fn register_function(&self, func: StoredFunction) -> Result<()>
pub fn register_function(&self, func: StoredFunction) -> Result<()>
Register a function
Sourcepub fn register_procedure(&self, proc: StoredProcedure) -> Result<()>
pub fn register_procedure(&self, proc: StoredProcedure) -> Result<()>
Register a procedure
Sourcepub fn get_function(&self, name: &str) -> Option<StoredFunction>
pub fn get_function(&self, name: &str) -> Option<StoredFunction>
Get a function by name
Sourcepub fn get_procedure(&self, name: &str) -> Option<StoredProcedure>
pub fn get_procedure(&self, name: &str) -> Option<StoredProcedure>
Get a procedure by name
Sourcepub fn function_exists(&self, name: &str) -> bool
pub fn function_exists(&self, name: &str) -> bool
Check if a function exists
Sourcepub fn procedure_exists(&self, name: &str) -> bool
pub fn procedure_exists(&self, name: &str) -> bool
Check if a procedure exists
Sourcepub fn list_functions(&self) -> Vec<String>
pub fn list_functions(&self) -> Vec<String>
List all function names
Sourcepub fn list_procedures(&self) -> Vec<String>
pub fn list_procedures(&self) -> Vec<String>
List all procedure names
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FunctionRegistry
impl RefUnwindSafe for FunctionRegistry
impl Send for FunctionRegistry
impl Sync for FunctionRegistry
impl Unpin for FunctionRegistry
impl UnsafeUnpin for FunctionRegistry
impl UnwindSafe for FunctionRegistry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more