Struct fluence_faas::FaaSModuleConfig [−][src]
pub struct FaaSModuleConfig {
pub mem_pages_count: Option<u32>,
pub logger_enabled: bool,
pub host_imports: HashMap<String, HostImportDescriptor>,
pub wasi: Option<FaaSWASIConfig>,
pub logging_mask: i32,
}Various settings that could be used to guide Marine how to load a module in a proper way.
Fields
mem_pages_count: Option<u32>Maximum memory size accessible by a module in Wasm pages (64 Kb).
logger_enabled: boolDefines whether FaaS should provide a special host log_utf8_string function for this module.
host_imports: HashMap<String, HostImportDescriptor>Export from host functions that will be accessible on the Wasm side by provided name.
wasi: Option<FaaSWASIConfig>A WASI config.
logging_mask: i32Mask used to filter logs, for details see log_utf8_string
Implementations
Trait Implementations
impl Default for FaaSModuleConfig[src]
impl Default for FaaSModuleConfig[src]fn default() -> FaaSModuleConfig[src]
fn default() -> FaaSModuleConfig[src]Returns the “default value” for a type. Read more
impl TryFrom<TomlFaaSModuleConfig> for FaaSModuleConfig[src]
impl TryFrom<TomlFaaSModuleConfig> for FaaSModuleConfig[src]Auto Trait Implementations
impl !RefUnwindSafe for FaaSModuleConfig
impl !Send for FaaSModuleConfig
impl !Sync for FaaSModuleConfig
impl Unpin for FaaSModuleConfig
impl !UnwindSafe for FaaSModuleConfig
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for Timpl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self