Remove unneeded rustfmt::skip
This commit is contained in:
@ -85,8 +85,10 @@ impl<T: Instance> CryptoRng for Rng<T> {}
|
||||
|
||||
impl<T: Instance> traits::rng::Rng for Rng<T> {
|
||||
type Error = Error;
|
||||
#[rustfmt::skip]
|
||||
type RngFuture<'a> where Self: 'a = impl Future<Output=Result<(), Self::Error>> + 'a;
|
||||
type RngFuture<'a>
|
||||
where
|
||||
Self: 'a,
|
||||
= impl Future<Output = Result<(), Self::Error>> + 'a;
|
||||
|
||||
fn fill_bytes<'a>(&'a mut self, dest: &'a mut [u8]) -> Self::RngFuture<'a> {
|
||||
unsafe {
|
||||
|
Reference in New Issue
Block a user