From 080cc42bb1da09059dbc35049a7ded0649961e0c Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 29 Aug 2022 20:52:56 +0200 Subject: feat: implement async functionality --- examples/async/animals/cat.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/async/animals/cat.rs (limited to 'examples/async/animals/cat.rs') diff --git a/examples/async/animals/cat.rs b/examples/async/animals/cat.rs new file mode 100644 index 0000000..b1e6f27 --- /dev/null +++ b/examples/async/animals/cat.rs @@ -0,0 +1,22 @@ +use syrette::injectable; + +use crate::interfaces::cat::ICat; + +pub struct Cat {} + +#[injectable(ICat, { async = true })] +impl Cat +{ + pub fn new() -> Self + { + Self {} + } +} + +impl ICat for Cat +{ + fn meow(&self) + { + println!("Meow!"); + } +} -- cgit v1.2.3-18-g5258