pub struct CompiledRegex {
wasm_bytes: Vec<u8>,
}
Expand description
Represents a regular expression that has been compiled into WebAssembly bytes.
Fields§
§wasm_bytes: Vec<u8>
Trait Implementations§
Source§impl AsRef<[u8]> for CompiledRegex
impl AsRef<[u8]> for CompiledRegex
Auto Trait Implementations§
impl Freeze for CompiledRegex
impl RefUnwindSafe for CompiledRegex
impl Send for CompiledRegex
impl Sync for CompiledRegex
impl Unpin for CompiledRegex
impl UnwindSafe for CompiledRegex
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