pub struct UseUserMediaReturn<StartFn, StopFn>{
pub stream: Signal<Option<Result<MediaStream, JsValue>>>,
pub start: StartFn,
pub stop: StopFn,
pub enabled: Signal<bool>,
pub set_enabled: WriteSignal<bool>,
}
Expand description
Return type of use_user_media
.
Fields§
§stream: Signal<Option<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: StartFn
Starts the screen streaming. Triggers the ask for permission if not already granted.
stop: StopFn
Stops 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 UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> Clone for UseUserMediaReturn<StartFn, StopFn>
Source§fn clone(&self) -> UseUserMediaReturn<StartFn, StopFn>
fn clone(&self) -> UseUserMediaReturn<StartFn, StopFn>
Returns a copy 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 UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> !RefUnwindSafe for UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> !Send for UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> !Sync for UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> Unpin for UseUserMediaReturn<StartFn, StopFn>
impl<StartFn, StopFn> !UnwindSafe for UseUserMediaReturn<StartFn, StopFn>
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> 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