pub struct Data<T: Send + Sync + 'static>(pub Arc<T>);Expand description
Extractor for user-provided state registered via App::state().
Returns Arc<T> so the data can be shared cheaply across handlers.
§Example
ⓘ
use oxide_framework_core::{ApiResponse, Data};
use std::sync::Arc;
struct DbPool { /* ... */ }
async fn handler(Data(pool): Data<DbPool>) -> ApiResponse<String> {
ApiResponse::ok("connected".into())
}Tuple Fields§
§0: Arc<T>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Data<T>
impl<T> RefUnwindSafe for Data<T>where
T: RefUnwindSafe,
impl<T> Send for Data<T>
impl<T> Sync for Data<T>
impl<T> Unpin for Data<T>
impl<T> UnsafeUnpin for Data<T>
impl<T> UnwindSafe for Data<T>where
T: RefUnwindSafe,
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<S, T> FromRequest<S, ViaParts> for T
impl<S, T> FromRequest<S, ViaParts> for T
Source§type Rejection = <T as FromRequestParts<S>>::Rejection
type Rejection = <T as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
Source§fn from_request(
req: Request<Body>,
state: &S,
) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
fn from_request( req: Request<Body>, state: &S, ) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
Perform the extraction.