1 2 3 4 5 6 7 8 9 10
use crate::Span; /// A memory entry. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Memory { /// Source span. pub span: Span, /// The memory type (limits and address width). pub ty: wasmparser::MemoryType, }