Skip to content
Snippets Groups Projects
Unverified Commit bc500521 authored by Nazar Mokrynskyi's avatar Nazar Mokrynskyi Committed by GitHub
Browse files

Implement more useful traits in `Slot` type (#1595)

I had quite a few conversions to/from `u64` because these were lacking.

Let me know if others are desirable as well for symmetry.
parent f209b31b
Branches
No related merge requests found
Pipeline #394201 passed with stages
in 52 minutes and 42 seconds
......@@ -24,7 +24,7 @@ use scale_info::TypeInfo;
use sp_timestamp::Timestamp;
/// Unit type wrapper that represents a slot.
#[derive(Debug, Encode, MaxEncodedLen, Decode, Eq, Clone, Copy, Default, Ord, TypeInfo)]
#[derive(Debug, Encode, MaxEncodedLen, Decode, Eq, Clone, Copy, Default, Ord, Hash, TypeInfo)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Slot(u64);
......@@ -44,6 +44,26 @@ impl core::ops::Add for Slot {
}
}
impl core::ops::Sub for Slot {
type Output = Self;
fn sub(self, other: Self) -> Self {
Self(self.0 - other.0)
}
}
impl core::ops::AddAssign for Slot {
fn add_assign(&mut self, rhs: Self) {
self.0 += rhs.0
}
}
impl core::ops::SubAssign for Slot {
fn sub_assign(&mut self, rhs: Self) {
self.0 -= rhs.0
}
}
impl core::ops::Add<u64> for Slot {
type Output = Self;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment