Browse Source

Merge pull request 'Make State struct constructable by lib user' (#178) from DevinR528/conduit:library-mode into master

Reviewed-on: https://git.koesters.xyz/timo/conduit/pulls/178
Reviewed-by: Timo Kösters <timo@koesters.xyz>
ruma
Timo Kösters 5 years ago
parent
commit
0f1e3d8214
  1. 4
      src/lib.rs

4
src/lib.rs

@ -9,11 +9,11 @@ mod utils; @@ -9,11 +9,11 @@ mod utils;
pub use database::Database;
pub use error::{Error, Result};
pub use pdu::PduEvent;
pub use rocket::Config;
pub use ruma_wrapper::{ConduitResult, Ruma, RumaResponse};
use std::ops::Deref;
pub struct State<'r, T: Send + Sync + 'static>(&'r T);
pub struct State<'r, T: Send + Sync + 'static>(pub &'r T);
impl<'r, T: Send + Sync + 'static> Deref for State<'r, T> {
type Target = T;

Loading…
Cancel
Save