Struct tauri_runtime::webview::WebviewAttributes
source · [−]pub struct WebviewAttributes {
pub url: WindowUrl,
pub initialization_scripts: Vec<String>,
pub data_directory: Option<PathBuf>,
pub file_drop_handler_enabled: bool,
pub clipboard: bool,
}
Expand description
The attributes used to create an webview.
Fields
url: WindowUrl
initialization_scripts: Vec<String>
data_directory: Option<PathBuf>
file_drop_handler_enabled: bool
clipboard: bool
Implementations
sourceimpl WebviewAttributes
impl WebviewAttributes
sourcepub fn initialization_script(self, script: &str) -> Self
pub fn initialization_script(self, script: &str) -> Self
Sets the init script.
sourcepub fn data_directory(self, data_directory: PathBuf) -> Self
pub fn data_directory(self, data_directory: PathBuf) -> Self
Data directory for the webview.
sourcepub fn disable_file_drop_handler(self) -> Self
pub fn disable_file_drop_handler(self) -> Self
Disables the file drop handler. This is required to use drag and drop APIs on the front end on Windows.
sourcepub fn enable_clipboard_access(self) -> Self
pub fn enable_clipboard_access(self) -> Self
Enables clipboard access for the page rendered on Linux and Windows.
macOS doesn’t provide such method and is always enabled by default, but you still need to add menu item accelerators to use shortcuts.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WebviewAttributes
impl Send for WebviewAttributes
impl Sync for WebviewAttributes
impl Unpin for WebviewAttributes
impl UnwindSafe for WebviewAttributes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more