Skip to content

Commit e67986e

Browse files
committed
Cargo fmt
1 parent 88f0b6a commit e67986e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hostfxr/managed_function.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
use std::{ops::Deref, fmt::Debug};
1+
use std::{fmt::Debug, ops::Deref};
22

33
/// A wrapper around a managed function pointer.
44
pub struct ManagedFunction<F: ManagedFunctionPtr>(pub(crate) F);
55

6-
impl <F: ManagedFunctionPtr> Debug for ManagedFunction<F> {
6+
impl<F: ManagedFunctionPtr> Debug for ManagedFunction<F> {
77
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
88
f.debug_struct("ManagedFunction")
99
.field("ptr", &self.0.as_ptr())

0 commit comments

Comments
 (0)