mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-09 20:11:09 +00:00
Improve match statement (#8817)
This commit is contained in:
@@ -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(_))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user