From b786827cddae136dc2759580f8250cd40175660c Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Mon, 2 Dec 2024 11:50:07 -0800 Subject: [PATCH] chrore: fixup rust 1.83 formatting --- der/src/referenced.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/der/src/referenced.rs b/der/src/referenced.rs index d7d34c028..22060b93b 100644 --- a/der/src/referenced.rs +++ b/der/src/referenced.rs @@ -38,7 +38,10 @@ impl OwnedToRef for Option where T: OwnedToRef, { - type Borrowed<'a> = Option> where T: 'a; + type Borrowed<'a> + = Option> + where + T: 'a; fn owned_to_ref(&self) -> Self::Borrowed<'_> { self.as_ref().map(|o| o.owned_to_ref())