[−][src]Struct browser_window::BrowserBuilder
Used to create a Browser or BrowserThreaded instance.
Implementations
impl BrowserBuilder[src]
pub fn borders(self, value: bool) -> Self[src]
Sets whether or not the window has borders. Default is true.
pub fn handler<H>(self, handler: H) -> Self where
H: FnMut(Browser, &str, &[&str]) + Send + 'static, [src]
H: FnMut(Browser, &str, &[&str]) + Send + 'static,
Configure a closure that can be invoked from within JavaScript. The closure's second parameter specifies a command name. The closure's third parameter specifies an array of string arguments.
pub fn minimizable(self, value: bool) -> Self[src]
Sets whether or not the window has a minimize button on the title bar Default is true
pub fn parent<B>(self, bw: &B) -> Self where
B: Deref<Target = BrowserHandle>, [src]
B: Deref<Target = BrowserHandle>,
Configure a parent window.
When a parent window closes, this browser window will close as well.
This could be a reference to a Browser or BrowserThreaded handle.
pub fn new(source: Source) -> Self[src]
Creates an instance of a browser window builder.
Arguments
source- The content that will be displayed in the browser window.
pub fn title<S: Into<String>>(self, title: S) -> Self[src]
pub fn width(self, width: u32) -> Self[src]
Sets the width that the browser window will be created with initially
Arguments
width- Width in pixels
pub fn height(self, height: u32) -> Self[src]
Sets the height that the browser window will be created with initially
Arguments
height- Height in pixels
pub fn resizable(self, resizable: bool) -> Self[src]
Sets whether or not the window will be resizable Default is true
pub async fn build(self, app: Application) -> Browser[src]
Creates the browser window.
Arguments
app- An application handle that this browser window can spawn into
pub async fn build_threaded(self, app: ApplicationThreaded) -> BrowserThreaded[src]
Same as build, but gives back a browser handle that is thread-safe.
Arguments
app- An thread-safe application handle.
Auto Trait Implementations
impl !RefUnwindSafe for BrowserBuilder
impl Send for BrowserBuilder
impl !Sync for BrowserBuilder
impl Unpin for BrowserBuilder
impl !UnwindSafe for BrowserBuilder
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,