pub struct State<S: Clone + Send + Sync + 'static>(pub S);Expand description
Extractor for state in handlers
When a cling program gets executed with a state of type S. The state can
be accessed via this extractor in any handler.
Type S must implement Clone as it gets cloned every time this extractor
runs.
Example:
use cling::prelude::*;
#[derive(Collect, ValueEnum, Debug, Clone)]
pub enum Colors {
Red,
Green,
Blue,
}
#[derive(Clone, Debug)]
struct Database {
_data: String,
}
async fn init(
State(database): State<Database>,
colors: &Option<Vec<Colors>>,
) {
println!( ">> Hello world! color: {:?}, database: {:?}", colors, database);
}Tuple Fields§
§0: STrait Implementations§
Source§impl<S: Ord + Clone + Send + Sync + 'static> Ord for State<S>
impl<S: Ord + Clone + Send + Sync + 'static> Ord for State<S>
Source§impl<S: PartialOrd + Clone + Send + Sync + 'static> PartialOrd for State<S>
impl<S: PartialOrd + Clone + Send + Sync + 'static> PartialOrd for State<S>
impl<S: Eq + Clone + Send + Sync + 'static> Eq for State<S>
impl<S: Clone + Send + Sync + 'static> StructuralPartialEq for State<S>
Auto Trait Implementations§
impl<S> Freeze for State<S>where
S: Freeze,
impl<S> RefUnwindSafe for State<S>where
S: RefUnwindSafe,
impl<S> Send for State<S>
impl<S> Sync for State<S>
impl<S> Unpin for State<S>where
S: Unpin,
impl<S> UnwindSafe for State<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§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