pub struct EditOp {
pub at: String,
pub replace: Option<String>,
pub insert: Option<String>,
pub all: bool,
pub ignore_case: bool,
pub word: bool,
}Fields§
§at: String§replace: Option<String>§insert: Option<String>§all: bool§ignore_case: bool§word: boolAuto Trait Implementations§
impl Freeze for EditOp
impl RefUnwindSafe for EditOp
impl Send for EditOp
impl Sync for EditOp
impl Unpin for EditOp
impl UnsafeUnpin for EditOp
impl UnwindSafe for EditOp
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