pub struct RegExpData {
pub re: Regex,
pub last_index: usize,
}Expand description
JS RegExp オブジェクトの内部状態(コンパイル済み + lastIndex)。
Fields§
§re: Regex§last_index: usizeAuto Trait Implementations§
impl Freeze for RegExpData
impl RefUnwindSafe for RegExpData
impl Send for RegExpData
impl Sync for RegExpData
impl Unpin for RegExpData
impl UnsafeUnpin for RegExpData
impl UnwindSafe for RegExpData
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