Struct leptos_use::UseWebSocketOptions
source · pub struct UseWebSocketOptions<T, E, D>where
T: ?Sized,{ /* private fields */ }
Expand description
Options for use_websocket_with_options
.
Implementations§
source§impl<T, E, D> UseWebSocketOptions<T, E, D>where
T: ?Sized,
impl<T, E, D> UseWebSocketOptions<T, E, D>where
T: ?Sized,
sourcepub fn on_message_raw(self, value: impl Fn(&str) + 'static) -> Self
pub fn on_message_raw(self, value: impl Fn(&str) + 'static) -> Self
WebSocket
message callback for text.
sourcepub fn on_message_raw_bytes(self, value: Rc<dyn Fn(&[u8])>) -> Self
pub fn on_message_raw_bytes(self, value: Rc<dyn Fn(&[u8])>) -> Self
WebSocket
message callback for binary.
sourcepub fn on_close(self, value: impl Fn(CloseEvent) + 'static) -> Self
pub fn on_close(self, value: impl Fn(CloseEvent) + 'static) -> Self
WebSocket
close callback.
sourcepub fn reconnect_limit(self, value: ReconnectLimit) -> Self
pub fn reconnect_limit(self, value: ReconnectLimit) -> Self
Retry times. Defaults to ReconnectLimit::Limited(3)
. Use ReconnectLimit::Infinite
for
infinite retries.
sourcepub fn reconnect_interval(self, value: u64) -> Self
pub fn reconnect_interval(self, value: u64) -> Self
Retry interval in ms. Defaults to 3000.
source§impl<T: ?Sized, E, D> UseWebSocketOptions<T, E, D>
impl<T: ?Sized, E, D> UseWebSocketOptions<T, E, D>
sourcepub fn on_error<F>(self, handler: F) -> Selfwhere
F: Fn(UseWebSocketError<E, D>) + 'static,
pub fn on_error<F>(self, handler: F) -> Selfwhere
F: Fn(UseWebSocketError<E, D>) + 'static,
WebSocket
error callback.
sourcepub fn on_message<F>(self, handler: F) -> Self
pub fn on_message<F>(self, handler: F) -> Self
WebSocket
message callback for typed message decoded by codec.
Trait Implementations§
Auto Trait Implementations§
impl<T, E, D> Freeze for UseWebSocketOptions<T, E, D>where
T: ?Sized,
impl<T, E, D> !RefUnwindSafe for UseWebSocketOptions<T, E, D>
impl<T, E, D> !Send for UseWebSocketOptions<T, E, D>
impl<T, E, D> !Sync for UseWebSocketOptions<T, E, D>
impl<T, E, D> Unpin for UseWebSocketOptions<T, E, D>where
T: ?Sized,
impl<T, E, D> !UnwindSafe for UseWebSocketOptions<T, E, D>
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