pub struct UseScreenOrientationReturn<LFn, UFn>where
LFn: Fn(ScreenOrientationLock) + Clone + Send + Sync + 'static,
UFn: Fn() + Clone + Send + Sync + 'static,{
pub orientation: Signal<ScreenOrientation>,
pub angle: Signal<u16>,
pub lock_orientation: LFn,
pub unlock_orientation: UFn,
}Expand description
Return type of crate::use_screen_orientation.
Fields§
§orientation: Signal<ScreenOrientation>Current screen orientation.
angle: Signal<u16>The document’s current orientation angle.
lock_orientation: LFnLocks the screen orientation to the specified orientation.
Typically orientation locking is only enabled on mobile devices, and when the browser context is full screen.
unlock_orientation: UFnUnlocks the screen orientation.
Auto Trait Implementations§
impl<LFn, UFn> Freeze for UseScreenOrientationReturn<LFn, UFn>
impl<LFn, UFn> RefUnwindSafe for UseScreenOrientationReturn<LFn, UFn>where
LFn: RefUnwindSafe,
UFn: RefUnwindSafe,
impl<LFn, UFn> Send for UseScreenOrientationReturn<LFn, UFn>
impl<LFn, UFn> Sync for UseScreenOrientationReturn<LFn, UFn>
impl<LFn, UFn> Unpin for UseScreenOrientationReturn<LFn, UFn>
impl<LFn, UFn> UnwindSafe for UseScreenOrientationReturn<LFn, UFn>where
LFn: UnwindSafe,
UFn: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> 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 moreSource§impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
fn into_element_maybe_signal(self) -> ElementMaybeSignal<T>
Source§impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
fn into_element_maybe_signal_type(self) -> ElementMaybeSignalType<T>
Source§impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
fn into_elements_maybe_signal(self) -> ElementsMaybeSignal<T>
Source§impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
fn into_elements_maybe_signal_type(self) -> ElementsMaybeSignalType<T>
Source§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.