pub struct UseDisplayMediaReturn<StartFn, StopFn>{
pub stream: OptionLocalSignal<Result<MediaStream, JsValue>>,
pub start: StartFn,
pub stop: StopFn,
pub enabled: Signal<bool>,
pub set_enabled: WriteSignal<bool>,
}Expand description
Return type of use_display_media
Fields§
§stream: OptionLocalSignal<Result<MediaStream, JsValue>>The current MediaStream if it exists.
Initially this is None until start resolved successfully.
In case the stream couldn’t be started, for example because the user didn’t grant permission,
this has the value Some(Err(...)).
start: StartFnStarts the screen streaming. Triggers the ask for permission if not already granted.
stop: StopFnStops the screen streaming
enabled: Signal<bool>A value of true indicates that the returned MediaStream
has resolved successfully and thus the stream is enabled.
set_enabled: WriteSignal<bool>A value of true is the same as calling start() whereas false is the same as calling stop().
Trait Implementations§
Source§impl<StartFn, StopFn> Clone for UseDisplayMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> Clone for UseDisplayMediaReturn<StartFn, StopFn>
Source§fn clone(&self) -> UseDisplayMediaReturn<StartFn, StopFn>
fn clone(&self) -> UseDisplayMediaReturn<StartFn, StopFn>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<StartFn, StopFn> Freeze for UseDisplayMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> RefUnwindSafe for UseDisplayMediaReturn<StartFn, StopFn>where
StartFn: RefUnwindSafe,
StopFn: RefUnwindSafe,
impl<StartFn, StopFn> Send for UseDisplayMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> Sync for UseDisplayMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> Unpin for UseDisplayMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> UnsafeUnpin for UseDisplayMediaReturn<StartFn, StopFn>where
StartFn: UnsafeUnpin,
StopFn: UnsafeUnpin,
impl<StartFn, StopFn> UnwindSafe for UseDisplayMediaReturn<StartFn, StopFn>where
StartFn: UnwindSafe,
StopFn: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.