Skip to content

Commit 1dacaa2

Browse files
committed
rustfmt
1 parent 937d859 commit 1dacaa2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

crypto/core/src/traits.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,9 +517,7 @@ pub trait Suspendable<const SERIALIZED_STATE_LEN: usize>: Sized {
517517
/// (including rejecting serializations from a future version of the library).
518518
/// For example, if a given object made a breaking change to its serialization in version 1.2.3, then its
519519
/// deserializer should reject serialized states from that version or older.
520-
fn from_suspended(
521-
state: [u8; SERIALIZED_STATE_LEN],
522-
) -> Result<Self, SerializedStateError>;
520+
fn from_suspended(state: [u8; SERIALIZED_STATE_LEN]) -> Result<Self, SerializedStateError>;
523521
}
524522

525523
/// Similar to [Suspendable] in that it allows a stateful object to suspend its operation by

0 commit comments

Comments
 (0)