We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e02774e commit e0dc270Copy full SHA for e0dc270
substrate/primitives/state-machine/src/overlayed_changes/changeset.rs
@@ -65,6 +65,7 @@ pub enum ExecutionMode {
65
Runtime,
66
}
67
68
+#[allow(missing_docs)]
69
#[derive(Debug, Default, Clone)]
70
#[cfg_attr(test, derive(PartialEq))]
71
pub struct InnerValue<V> {
substrate/primitives/state-machine/src/overlayed_changes/mod.rs
@@ -813,7 +813,9 @@ where
813
/// or an owned extension.
814
#[cfg(feature = "std")]
815
pub enum OverlayedExtension<'a> {
816
+ #[allow(missing_docs)]
817
MutRef(&'a mut Box<dyn Extension>),
818
819
Owned(Box<dyn Extension>),
820
821
0 commit comments