From 1b6a04ca5504955c571d1c97504fb45ea0befee4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 8 Jan 2024 01:21:28 +0400 Subject: Initial vendor packages Signed-off-by: Valentin Popov --- vendor/miette/src/macro_helpers.rs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 vendor/miette/src/macro_helpers.rs (limited to 'vendor/miette/src/macro_helpers.rs') diff --git a/vendor/miette/src/macro_helpers.rs b/vendor/miette/src/macro_helpers.rs new file mode 100644 index 0000000..5520899 --- /dev/null +++ b/vendor/miette/src/macro_helpers.rs @@ -0,0 +1,38 @@ +// Huge thanks to @jam1gamer for this hack: +// https://twitter.com/jam1garner/status/1515887996444323840 + +#[doc(hidden)] +pub trait IsOption {} +impl IsOption for Option {} + +#[doc(hidden)] +#[derive(Debug, Default)] +pub struct OptionalWrapper(pub core::marker::PhantomData); + +impl OptionalWrapper { + pub fn new() -> Self { + Self(core::marker::PhantomData) + } +} + +#[doc(hidden)] +pub trait ToOption { + #[doc(hidden)] + fn to_option(self, value: T) -> Option; +} + +impl OptionalWrapper +where + T: IsOption, +{ + #[doc(hidden)] + pub fn to_option(self, value: &T) -> &T { + value + } +} + +impl ToOption for &OptionalWrapper { + fn to_option(self, value: U) -> Option { + Some(value) + } +} -- cgit v1.2.3