From ade21185976ea2324d313a5c28a88cc0492f2934 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 20 Aug 2022 17:10:08 +0200 Subject: docs: add a example that uses a 3rd party library --- examples/with-3rd-party/main.rs | 42 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 examples/with-3rd-party/main.rs (limited to 'examples/with-3rd-party/main.rs') diff --git a/examples/with-3rd-party/main.rs b/examples/with-3rd-party/main.rs new file mode 100644 index 0000000..f615ff5 --- /dev/null +++ b/examples/with-3rd-party/main.rs @@ -0,0 +1,42 @@ +#![deny(clippy::all)] +#![deny(clippy::pedantic)] +#![allow(clippy::module_name_repetitions)] + +use std::fmt::Display; + +mod bootstrap; +mod interfaces; +mod ninja; + +use error_stack::{Context, ResultExt}; + +use crate::bootstrap::bootstrap; +use crate::interfaces::ninja::INinja; + +#[derive(Debug)] +struct ApplicationError; + +impl Display for ApplicationError +{ + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result + { + f.write_str("An application error has occurred") + } +} + +impl Context for ApplicationError {} + +fn main() -> error_stack::Result<(), ApplicationError> +{ + println!("Hello, world!"); + + let di_container = bootstrap().change_context(ApplicationError)?; + + let ninja = di_container + .get::() + .change_context(ApplicationError)?; + + ninja.throw_shuriken(); + + Ok(()) +} -- cgit v1.2.3-18-g5258