Skip to content

Commit d2c8695

Browse files
committed
rustfmt: reformat large function signatures
1 parent 35e27d4 commit d2c8695

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/api.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,12 @@ impl Keyring {
345345
check_call(i64::from(res), Keyring::new_impl(res))
346346
}
347347

348-
fn request_fallback_impl(&self, type_: &str, description: &str, info: &str) -> Result<KeyringSerial> {
348+
fn request_fallback_impl(
349+
&self,
350+
type_: &str,
351+
description: &str,
352+
info: &str,
353+
) -> Result<KeyringSerial> {
349354
let type_cstr = CString::new(type_).unwrap();
350355
let desc_cstr = CString::new(description).unwrap();
351356
let info_cstr = CString::new(info).unwrap();

0 commit comments

Comments
 (0)