From 3db388dd567fbabb6a88ee7100de65442089c3f1 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 2 Aug 2022 20:01:49 +0200 Subject: docs: fix DI container module documentation --- src/di_container.rs | 88 ++++++++++++++++++++++++++--------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) (limited to 'src') diff --git a/src/di_container.rs b/src/di_container.rs index 5ee1c52..e15d921 100644 --- a/src/di_container.rs +++ b/src/di_container.rs @@ -1,48 +1,48 @@ //! Dependency injection container and other related utilities. -/// -/// # Examples -/// ``` -/// use std::collections::HashMap; -/// -/// use syrette::{DIContainer, injectable}; -/// use syrette::errors::di_container::DIContainerError; -/// -/// trait IDatabaseService -/// { -/// fn get_all_records(&self, table_name: String) -> HashMap; -/// } -/// -/// struct DatabaseService {} -/// -/// #[injectable(IDatabaseService)] -/// impl DatabaseService -/// { -/// fn new() -> Self -/// { -/// Self {} -/// } -/// } -/// -/// impl IDatabaseService for DatabaseService -/// { -/// fn get_all_records(&self, table_name: String) -> HashMap -/// { -/// // Do stuff here -/// HashMap::::new() -/// } -/// } -/// -/// fn main() -> error_stack::Result<(), DIContainerError> -/// { -/// let mut di_container = DIContainer::new(); -/// -/// di_container.bind::().to::(); -/// -/// let database_service = di_container.get::()?; -/// -/// Ok(()) -/// } -/// ``` +//! +//! # Examples +//! ``` +//! use std::collections::HashMap; +//! +//! use syrette::{DIContainer, injectable}; +//! use syrette::errors::di_container::DIContainerError; +//! +//! trait IDatabaseService +//! { +//! fn get_all_records(&self, table_name: String) -> HashMap; +//! } +//! +//! struct DatabaseService {} +//! +//! #[injectable(IDatabaseService)] +//! impl DatabaseService +//! { +//! fn new() -> Self +//! { +//! Self {} +//! } +//! } +//! +//! impl IDatabaseService for DatabaseService +//! { +//! fn get_all_records(&self, table_name: String) -> HashMap +//! { +//! // Do stuff here +//! HashMap::::new() +//! } +//! } +//! +//! fn main() -> error_stack::Result<(), DIContainerError> +//! { +//! let mut di_container = DIContainer::new(); +//! +//! di_container.bind::().to::(); +//! +//! let database_service = di_container.get::()?; +//! +//! Ok(()) +//! } +//! ``` use std::any::type_name; use std::marker::PhantomData; -- cgit v1.2.3-18-g5258