Run cargo fmt on the whole code base (#9394)

* Run cargo fmt on the whole code base

* Second run

* Add CI check

* Fix compilation

* More unnecessary braces

* Handle weights

* Use --all

* Use correct attributes...

* Fix UI tests

* AHHHHHHHHH

* 🤦

* Docs

* Fix compilation

* 🤷

* Please stop

* 🤦 x 2

* More

* make rustfmt.toml consistent with polkadot

Co-authored-by: André Silva <andrerfosilva@gmail.com>
This commit is contained in:
Bastian Köcher
2021-07-21 16:32:32 +02:00
committed by GitHub
parent d451c38c1c
commit 7b56ab15b4
1010 changed files with 53339 additions and 51208 deletions
+15 -25
View File
@@ -19,10 +19,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
use sp_std::{
vec,
borrow::Cow, marker::PhantomData, mem, iter::Iterator, result, vec::Vec,
};
use sp_std::{borrow::Cow, iter::Iterator, marker::PhantomData, mem, result, vec, vec::Vec};
#[cfg(feature = "std")]
mod wasmi_impl;
@@ -141,10 +138,7 @@ pub struct Pointer<T: PointerType> {
impl<T: PointerType> Pointer<T> {
/// Create a new instance of `Self`.
pub fn new(ptr: u32) -> Self {
Self {
ptr,
_marker: Default::default(),
}
Self { ptr, _marker: Default::default() }
}
/// Calculate the offset from this pointer.
@@ -153,12 +147,10 @@ impl<T: PointerType> Pointer<T> {
///
/// Returns an `Option` to respect that the pointer could probably overflow.
pub fn offset(self, offset: u32) -> Option<Self> {
offset.checked_mul(T::SIZE).and_then(|o| self.ptr.checked_add(o)).map(|ptr| {
Self {
ptr,
_marker: Default::default(),
}
})
offset
.checked_mul(T::SIZE)
.and_then(|o| self.ptr.checked_add(o))
.map(|ptr| Self { ptr, _marker: Default::default() })
}
/// Create a null pointer.
@@ -198,7 +190,9 @@ impl<T: PointerType> From<Pointer<T>> for usize {
impl<T: PointerType> IntoValue for Pointer<T> {
const VALUE_TYPE: ValueType = ValueType::I32;
fn into_value(self) -> Value { Value::I32(self.ptr as _) }
fn into_value(self) -> Value {
Value::I32(self.ptr as _)
}
}
impl<T: PointerType> TryFromValue for Pointer<T> {
@@ -224,19 +218,16 @@ pub struct Signature {
impl Signature {
/// Create a new instance of `Signature`.
pub fn new<T: Into<Cow<'static, [ValueType]>>>(args: T, return_value: Option<ValueType>) -> Self {
Self {
args: args.into(),
return_value,
}
pub fn new<T: Into<Cow<'static, [ValueType]>>>(
args: T,
return_value: Option<ValueType>,
) -> Self {
Self { args: args.into(), return_value }
}
/// Create a new instance of `Signature` with the given `args` and without any return value.
pub fn new_with_args<T: Into<Cow<'static, [ValueType]>>>(args: T) -> Self {
Self {
args: args.into(),
return_value: None,
}
Self { args: args.into(), return_value: None }
}
}
@@ -500,7 +491,6 @@ mod tests {
assert_eq!(ptr.offset(32).unwrap(), Pointer::new(256));
}
#[test]
fn return_value_encoded_max_size() {
let encoded = ReturnValue::Value(Value::I64(-1)).encode();
@@ -17,7 +17,7 @@
//! Implementation of conversions between Substrate and wasmi types.
use crate::{Value, ValueType, Signature};
use crate::{Signature, Value, ValueType};
impl From<Value> for wasmi::RuntimeValue {
fn from(value: Value) -> Self {