pub struct RuntimeManager {}
Expand description
Simple runtime manager (placeholder implementation)
Implementations§
Source§impl RuntimeManager
impl RuntimeManager
Sourcepub fn is_external_function(&self, _name: &str) -> bool
pub fn is_external_function(&self, _name: &str) -> bool
Check if a function name belongs to an external handler
Sourcepub fn call_external_function(
&self,
name: &str,
_args: Vec<JsonnetValue>,
) -> Result<JsonnetValue>
pub fn call_external_function( &self, name: &str, _args: Vec<JsonnetValue>, ) -> Result<JsonnetValue>
Call an external function (placeholder)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RuntimeManager
impl RefUnwindSafe for RuntimeManager
impl Send for RuntimeManager
impl Sync for RuntimeManager
impl Unpin for RuntimeManager
impl UnwindSafe for RuntimeManager
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