pub enum SplitPointExtractor {
Legacy,
Wamex,
}Expand description
This is temporary solution to support old wamex split points
Variants§
Legacy
Use regexp and wasm_split prefix to identify split points.
Wamex
Use wamex prefix and .start_with instead of regexp.
Trait Implementations§
Source§impl Clone for SplitPointExtractor
impl Clone for SplitPointExtractor
Source§fn clone(&self) -> SplitPointExtractor
fn clone(&self) -> SplitPointExtractor
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 moreimpl Copy for SplitPointExtractor
Source§impl Debug for SplitPointExtractor
impl Debug for SplitPointExtractor
Source§impl ValueEnum for SplitPointExtractor
impl ValueEnum for SplitPointExtractor
Auto Trait Implementations§
impl Freeze for SplitPointExtractor
impl RefUnwindSafe for SplitPointExtractor
impl Send for SplitPointExtractor
impl Sync for SplitPointExtractor
impl Unpin for SplitPointExtractor
impl UnsafeUnpin for SplitPointExtractor
impl UnwindSafe for SplitPointExtractor
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