pub struct WasmOptions {
pub module: String,
pub parallelism: Option<u32>,
pub ordering: Option<String>,
pub on_failure: Option<String>,
}Expand description
B-110 — options for StreamBuilder::wasm. module is required.
Fields§
§module: StringRegistered module name (upload first via client.wasm().upload(...)).
parallelism: Option<u32>§ordering: Option<String>Must be "PRESERVE_INPUT" or "UNORDERED".
on_failure: Option<String>Must be "EMIT_ERROR", "DROP", or "PASS_THROUGH".
Trait Implementations§
Source§impl Clone for WasmOptions
impl Clone for WasmOptions
Source§impl Debug for WasmOptions
impl Debug for WasmOptions
Auto Trait Implementations§
impl Freeze for WasmOptions
impl RefUnwindSafe for WasmOptions
impl Send for WasmOptions
impl Sync for WasmOptions
impl Unpin for WasmOptions
impl UnsafeUnpin for WasmOptions
impl UnwindSafe for WasmOptions
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