Skip to content

Commit a94882a

Browse files
committed
cargo fmt --all
1 parent 116ce15 commit a94882a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

der/src/referenced.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ impl<T> OwnedToRef for Option<T>
3838
where
3939
T: OwnedToRef,
4040
{
41-
type Borrowed<'a> = Option<T::Borrowed<'a>> where T: 'a;
41+
type Borrowed<'a>
42+
= Option<T::Borrowed<'a>>
43+
where
44+
T: 'a;
4245

4346
fn owned_to_ref(&self) -> Self::Borrowed<'_> {
4447
self.as_ref().map(|o| o.owned_to_ref())

0 commit comments

Comments
 (0)