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§fn clone(&self) -> WasmOptions
fn clone(&self) -> WasmOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WasmOptions
impl Debug for WasmOptions
Source§impl Default for WasmOptions
impl Default for WasmOptions
Source§fn default() -> WasmOptions
fn default() -> WasmOptions
Returns the “default value” for a type. Read more
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