blob: 7e10024d033b982e1172e96171a0283aabf7908b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![allow(clippy::disallowed_names)]
use std::error::Error;
use syrette::di_container::blocking::prelude::*;
use syrette::injectable;
use syrette::ptr::TransientPtr;
struct Foo
{
bar: TransientPtr<Bar>,
}
#[injectable]
impl Foo
{
fn new(bar: TransientPtr<Bar>) -> Self
{
Self { bar }
}
}
struct Bar
{
foo: TransientPtr<Foo>,
}
#[injectable]
impl Bar
{
fn new(foo: TransientPtr<Foo>) -> Self
{
Self { foo }
}
}
fn main() -> Result<(), anyhow::Error>
{
let mut di_container = DIContainer::new();
di_container.bind::<Foo>().to::<Foo>()?;
di_container.bind::<Bar>().to::<Bar>()?;
let foo = di_container.get::<Foo>()?.transient()?;
Ok(())
}
|