pub struct VectorAuthUrlHandler;Expand description
Auth-URL handler that forwards bunker prompts to the frontend via the
EventEmitter trait. The frontend receives a bunker_auth_url event and
is responsible for opening the URL (in-app webview, system browser, …).
Trait Implementations§
Source§impl AuthUrlHandler for VectorAuthUrlHandler
impl AuthUrlHandler for VectorAuthUrlHandler
Source§fn on_auth_url<'a>(&'a self, auth_url: Url) -> BoxedFuture<'a, Result<()>>
fn on_auth_url<'a>(&'a self, auth_url: Url) -> BoxedFuture<'a, Result<()>>
Handle
auth_url messageSource§impl Clone for VectorAuthUrlHandler
impl Clone for VectorAuthUrlHandler
Source§fn clone(&self) -> VectorAuthUrlHandler
fn clone(&self) -> VectorAuthUrlHandler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VectorAuthUrlHandler
impl Debug for VectorAuthUrlHandler
Source§impl Default for VectorAuthUrlHandler
impl Default for VectorAuthUrlHandler
Source§fn default() -> VectorAuthUrlHandler
fn default() -> VectorAuthUrlHandler
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VectorAuthUrlHandler
impl RefUnwindSafe for VectorAuthUrlHandler
impl Send for VectorAuthUrlHandler
impl Sync for VectorAuthUrlHandler
impl Unpin for VectorAuthUrlHandler
impl UnsafeUnpin for VectorAuthUrlHandler
impl UnwindSafe for VectorAuthUrlHandler
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