Improve match statement (#8817)

This commit is contained in:
Ayush Mishra
2021-05-16 01:13:58 +05:30
committed by GitHub
parent eaccde2ddc
commit c28ab1fcac
3 changed files with 5 additions and 20 deletions
+1 -4
View File
@@ -335,10 +335,7 @@ impl DatabaseSettingsSrc {
}
/// Check if database supports internal ref counting for state data.
pub fn supports_ref_counting(&self) -> bool {
match self {
DatabaseSettingsSrc::ParityDb { .. } => true,
_ => false,
}
matches!(self, DatabaseSettingsSrc::ParityDb { .. })
}
}
+3 -12
View File
@@ -161,18 +161,12 @@ impl DeriveJunction {
/// Return `true` if the junction is soft.
pub fn is_soft(&self) -> bool {
match *self {
DeriveJunction::Soft(_) => true,
_ => false,
}
matches!(*self, DeriveJunction::Soft(_))
}
/// Return `true` if the junction is hard.
pub fn is_hard(&self) -> bool {
match *self {
DeriveJunction::Hard(_) => true,
_ => false,
}
matches!(*self, DeriveJunction::Hard(_))
}
}
@@ -401,10 +395,7 @@ macro_rules! ss58_address_format {
/// Whether the address is custom.
pub fn is_custom(&self) -> bool {
match self {
Self::Custom(_) => true,
_ => false,
}
matches!(self, Self::Custom(_))
}
}
@@ -239,8 +239,5 @@ fn generate_call_to_trait(
/// Returns if the given `Signature` takes a `self` argument.
fn takes_self_argument(sig: &Signature) -> bool {
match sig.inputs.first() {
Some(FnArg::Receiver(_)) => true,
_ => false,
}
matches!(sig.inputs.first(), Some(FnArg::Receiver(_)))
}