pub struct UseWindowSizeOptions { /* private fields */ }
Expand description
Options for crate::use_window_size_with_options
.
Implementations§
Source§impl UseWindowSizeOptions
impl UseWindowSizeOptions
Sourcepub fn initial_size(self, value: Size) -> Self
pub fn initial_size(self, value: Size) -> Self
The initial size before anything is measured (like on the server side).
Defaults to Size { width: INFINITY, height: INFINITY }
.
Sourcepub fn listen_orientation(self, value: bool) -> Self
pub fn listen_orientation(self, value: bool) -> Self
Listen to the window orientationchange
event. Defaults to true
.
Sourcepub fn include_scrollbar(self, value: bool) -> Self
pub fn include_scrollbar(self, value: bool) -> Self
Whether the scrollbar should be included in the width and height
Only effective when measure_type
is MeasureType::Inner
.
Defaults to true
.
Sourcepub fn measure_type(self, value: MeasureType) -> Self
pub fn measure_type(self, value: MeasureType) -> Self
Use window.innerWidth
or window.outerWidth
.
Defaults to MeasureType::Inner
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UseWindowSizeOptions
impl RefUnwindSafe for UseWindowSizeOptions
impl Send for UseWindowSizeOptions
impl Sync for UseWindowSizeOptions
impl Unpin for UseWindowSizeOptions
impl UnwindSafe for UseWindowSizeOptions
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more