Struct leptos_use::UseEventSourceOptions
source · pub struct UseEventSourceOptions<T, C>where
T: 'static,
C: StringCodec<T>,{ /* private fields */ }
Expand description
Options for use_event_source_with_options
.
Implementations§
source§impl<T, C> UseEventSourceOptions<T, C>where
T: 'static,
C: StringCodec<T>,
impl<T, C> UseEventSourceOptions<T, C>where
T: 'static,
C: StringCodec<T>,
sourcepub fn codec<New__C, New__T>(
self,
value: New__C
) -> UseEventSourceOptions<New__T, New__C>where
New__T: 'static,
New__C: StringCodec<New__T>,
pub fn codec<New__C, New__T>(
self,
value: New__C
) -> UseEventSourceOptions<New__T, New__C>where
New__T: 'static,
New__C: StringCodec<New__T>,
Decodes from the received String to a value of type T
.
sourcepub fn reconnect_limit(self, value: u64) -> Self
pub fn reconnect_limit(self, value: u64) -> Self
Retry times. Defaults to 3.
sourcepub fn reconnect_interval(self, value: u64) -> Self
pub fn reconnect_interval(self, value: u64) -> Self
Retry interval in ms. Defaults to 3000.
sourcepub fn immediate(self, value: bool) -> Self
pub fn immediate(self, value: bool) -> Self
If true
the EventSource
connection will immediately be opened when calling this function.
If false
you have to manually call the open
function.
Defaults to true
.
sourcepub fn named_events(self, value: impl Into<Vec<String>>) -> Self
pub fn named_events(self, value: impl Into<Vec<String>>) -> Self
List of named events to listen for on the EventSource
.
sourcepub fn with_credentials(self, value: bool) -> Self
pub fn with_credentials(self, value: bool) -> Self
If CORS should be set to include
credentials. Defaults to false
.
pub fn _marker<New__T>(
self,
value: PhantomData<New__T>
) -> UseEventSourceOptions<New__T, C>where
New__T: 'static,
C: StringCodec<New__T>,
Trait Implementations§
source§impl<T, C: StringCodec<T> + Default> Default for UseEventSourceOptions<T, C>
impl<T, C: StringCodec<T> + Default> Default for UseEventSourceOptions<T, C>
Auto Trait Implementations§
impl<T, C> Freeze for UseEventSourceOptions<T, C>where
C: Freeze,
impl<T, C> !RefUnwindSafe for UseEventSourceOptions<T, C>
impl<T, C> !Send for UseEventSourceOptions<T, C>
impl<T, C> !Sync for UseEventSourceOptions<T, C>
impl<T, C> Unpin for UseEventSourceOptions<T, C>
impl<T, C> !UnwindSafe for UseEventSourceOptions<T, C>
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