Expand description
The flash message lib for Salvo web framework.
Read more: https://salvo.rs
Structs§
- Cookie
Store cookie-store
CookieStore is aFlashStore
implementation that stores the flash messages in a cookie. - A flash is a list of messages.
FlashHandler
is a middleware for flash messages.- A flash message.
- Session
Store session-store
SessionStore is aFlashStore
implementation that stores the flash messages in a session.
Enums§
- Verbosity level of a flash message.
Constants§
- Key for incoming flash messages in depot.
- Key for outgoing flash messages in depot.
Traits§
- A trait for
Depot
to get flash messages. FlashStore
is for stores flash messages.
Functions§
- cookie_
store cookie-store
Helper function to create aCookieStore
. - session_
store session-store
Helper function to create aSessionStore
.