pub struct DummyShellProvider;Trait Implementations§
Source§impl ShellProvider for DummyShellProvider
impl ShellProvider for DummyShellProvider
fn request_redraw(&self)
fn set_cursor(&self, icon: CursorIcon)
fn set_window_title(&self, title: String)
fn set_ime_enabled(&self, is_enabled: bool)
fn set_ime_cursor_area(&self, x: f32, y: f32, width: f32, height: f32)
fn get_clipboard_text(&self) -> Result<String, ClipboardError>
fn set_clipboard_text(&self, text: String) -> Result<(), ClipboardError>
fn open_file_dialog( &self, multiple: bool, filter: Option<FileDialogFilter>, ) -> Vec<PathBuf>
Auto Trait Implementations§
impl Freeze for DummyShellProvider
impl RefUnwindSafe for DummyShellProvider
impl Send for DummyShellProvider
impl Sync for DummyShellProvider
impl Unpin for DummyShellProvider
impl UnsafeUnpin for DummyShellProvider
impl UnwindSafe for DummyShellProvider
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