Struct sea_orm_rocket::Initializer
source · pub struct Initializer<D: Database>(_, _);
Expand description
A Fairing
which initializes a Database
and its connection pool.
A value of this type can be created for any type D
that implements
Database
via the Database::init()
method on the type. Normally, a
value of this type never needs to be constructed directly. This
documentation exists purely as a reference.
This fairing initializes a database pool. Specifically, it:
-
Reads the configuration at
database.db_name
, wheredb_name
isDatabase::NAME
. -
Sets
Config
defaults on the configuration figment. -
Calls
Pool::init()
. -
Stores the database instance in managed storage, retrievable via
Database::fetch()
.
The name of the fairing itself is Initializer<D>
, with D
replaced with
the type name D
unless a name is explicitly provided via
Self::with_name()
.
Implementations
sourceimpl<D: Database> Initializer<D>
impl<D: Database> Initializer<D>
sourcepub fn new() -> Self
pub fn new() -> Self
Returns a database initializer fairing for D
.
This method should never need to be called manually. See the crate docs for usage information.
sourcepub fn with_name(name: &'static str) -> Self
pub fn with_name(name: &'static str) -> Self
Returns a database initializer fairing for D
with name name
.
This method should never need to be called manually. See the crate docs for usage information.
Trait Implementations
sourceimpl<D: Database> Fairing for Initializer<D>
impl<D: Database> Fairing for Initializer<D>
sourcefn on_ignite<'life0, 'async_trait>(
&'life0 self,
rocket: Rocket<Build>
) -> Pin<Box<dyn Future<Output = Result> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn on_ignite<'life0, 'async_trait>(
&'life0 self,
rocket: Rocket<Build>
) -> Pin<Box<dyn Future<Output = Result> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Ok
if ignition should proceed and Err
if ignition and launch should be aborted. Read moresourcefn on_liftoff<'life0, 'life1, 'async_trait>(
&'life0 self,
_rocket: &'life1 Rocket<Orbit>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn on_liftoff<'life0, 'life1, 'async_trait>(
&'life0 self,
_rocket: &'life1 Rocket<Orbit>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
sourcefn on_request<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_req: &'life1 mut Request<'life2>,
_data: &'life3 mut Data<'life4>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Self: 'async_trait,
fn on_request<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_req: &'life1 mut Request<'life2>,
_data: &'life3 mut Data<'life4>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Self: 'async_trait,
sourcefn on_response<'r, 'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_req: &'r Request<'life1>,
_res: &'life2 mut Response<'r>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'r: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
fn on_response<'r, 'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_req: &'r Request<'life1>,
_res: &'life2 mut Response<'r>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait, Global>>where
'r: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
Auto Trait Implementations
impl<D> RefUnwindSafe for Initializer<D>
impl<D> Send for Initializer<D>
impl<D> Sync for Initializer<D>
impl<D> Unpin for Initializer<D>
impl<D> UnwindSafe for Initializer<D>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
self
into a collection.