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/dog.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/async/animals/dog.rs (limited to 'examples/async/animals/dog.rs') diff --git a/examples/async/animals/dog.rs b/examples/async/animals/dog.rs new file mode 100644 index 0000000..d1b33f9 --- /dev/null +++ b/examples/async/animals/dog.rs @@ -0,0 +1,22 @@ +use syrette::injectable; + +use crate::interfaces::dog::IDog; + +pub struct Dog {} + +#[injectable(IDog, { async = true })] +impl Dog +{ + pub fn new() -> Self + { + Self {} + } +} + +impl IDog for Dog +{ + fn woof(&self) + { + println!("Woof!"); + } +} -- cgit v1.2.3-18-g5258