pub struct Sse<S> { /* private fields */ }
Expand description
An SSE response
Implementations§
source§impl<S> Sse<S>
impl<S> Sse<S>
sourcepub fn new(stream: S) -> Self
pub fn new(stream: S) -> Self
Create a new Sse
response that will respond with the given stream of
Event
s.
See the module docs for more details.
sourcepub fn keep_alive(self, keep_alive: KeepAlive) -> Self
pub fn keep_alive(self, keep_alive: KeepAlive) -> Self
Configure the interval between keep-alive messages.
Defaults to no keep-alive messages.
Trait Implementations§
Auto Trait Implementations§
impl<S> !Freeze for Sse<S>
impl<S> RefUnwindSafe for Sse<S>where
S: RefUnwindSafe,
impl<S> Send for Sse<S>where
S: Send,
impl<S> Sync for Sse<S>where
S: Sync,
impl<S> Unpin for Sse<S>where
S: Unpin,
impl<S> UnwindSafe for Sse<S>where
S: 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<H, T> HandlerWithoutStateExt<T> for H
impl<H, T> HandlerWithoutStateExt<T> for H
source§fn into_service(self) -> HandlerService<H, T, ()>
fn into_service(self) -> HandlerService<H, T, ()>
Convert the handler into a
Service
and no state.source§fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
Convert the handler into a
MakeService
and no state. Read moresource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
Convert the handler into a
MakeService
which stores information
about the incoming connection and has no state. Read more