Skip to content
Snippets Groups Projects
Commit b890a28c authored by Jay Pavlina's avatar Jay Pavlina Committed by GitHub
Browse files

Implement core::fmt::Debug for BoundedVec (#9914)

parent 085935dd
Branches
No related merge requests found
...@@ -200,13 +200,12 @@ impl<T, S> Default for BoundedVec<T, S> { ...@@ -200,13 +200,12 @@ impl<T, S> Default for BoundedVec<T, S> {
} }
} }
#[cfg(feature = "std")] impl<T, S> sp_std::fmt::Debug for BoundedVec<T, S>
impl<T, S> std::fmt::Debug for BoundedVec<T, S>
where where
T: std::fmt::Debug, T: sp_std::fmt::Debug,
S: Get<u32>, S: Get<u32>,
{ {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
f.debug_tuple("BoundedVec").field(&self.0).field(&Self::bound()).finish() f.debug_tuple("BoundedVec").field(&self.0).field(&Self::bound()).finish()
} }
} }
......
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