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>
fn request_window_close(&self)
fn set_window_minimized(&self, minimized: bool)
fn set_window_maximized(&self, maximized: bool)
fn is_window_maximized(&self) -> bool
fn set_window_decorations(&self, decorations: bool)
Source§fn drag_window(&self)
fn drag_window(&self)
Begin an interactive user-driven move of the window (call from a
mousedown handler on a drag region)
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