pub enum Strategy {
ClipboardPaste,
UnicodeType,
ClipboardOnly,
}Expand description
How text should be delivered.
Variants§
ClipboardPaste
Clipboard plus a synthesized paste chord. Fast and correct for long text.
UnicodeType
Type the text as Unicode input. Slower, but works where paste is blocked.
ClipboardOnly
Write the clipboard and stop, leaving the paste to the user.
Trait Implementations§
impl Copy for Strategy
impl Eq for Strategy
impl StructuralPartialEq for Strategy
Auto Trait Implementations§
impl Freeze for Strategy
impl RefUnwindSafe for Strategy
impl Send for Strategy
impl Sync for Strategy
impl Unpin for Strategy
impl UnsafeUnpin for Strategy
impl UnwindSafe for Strategy
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