pub struct MemoryType { /* private fields */ }
Expand description
The memory type of a linear memory.
Implementations§
Source§impl MemoryType
impl MemoryType
Sourcepub fn new(minimum: u32, maximum: Option<u32>) -> Result<Self, Error>
pub fn new(minimum: u32, maximum: Option<u32>) -> Result<Self, Error>
Creates a new memory type with minimum and optional maximum pages.
§Errors
- If the
minimum
pages exceeds themaximum
pages. - If the
minimum
ormaximum
pages are out of bounds.
Sourcepub fn new64(minimum: u64, maximum: Option<u64>) -> Result<Self, Error>
pub fn new64(minimum: u64, maximum: Option<u64>) -> Result<Self, Error>
Creates a new 64-bit memory type with minimum and optional maximum pages.
§Errors
- If the
minimum
pages exceeds themaximum
pages. - If the
minimum
ormaximum
pages are out of bounds.
64-bit memories are part of the Wasm memory64
proposal.
Sourcepub fn builder() -> MemoryTypeBuilder
pub fn builder() -> MemoryTypeBuilder
Returns a MemoryTypeBuilder
to incrementally construct a MemoryType
.
Sourcepub fn is_64(&self) -> bool
pub fn is_64(&self) -> bool
Returns true
if this is a 64-bit MemoryType
.
64-bit memories are part of the Wasm memory64
proposal.
Sourcepub fn maximum(self) -> Option<u64>
pub fn maximum(self) -> Option<u64>
Returns the maximum pages of the memory type.
Returns None
if there is no limit set.
Sourcepub fn page_size(self) -> u32
pub fn page_size(self) -> u32
Returns the page size of the MemoryType
in bytes.
Sourcepub fn page_size_log2(self) -> u8
pub fn page_size_log2(self) -> u8
Returns the page size of the MemoryType
in log2(bytes).
Trait Implementations§
Source§impl Clone for MemoryType
impl Clone for MemoryType
Source§fn clone(&self) -> MemoryType
fn clone(&self) -> MemoryType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MemoryType
impl Debug for MemoryType
Source§impl From<MemoryType> for ExternType
impl From<MemoryType> for ExternType
Source§fn from(memory: MemoryType) -> Self
fn from(memory: MemoryType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MemoryType
impl PartialEq for MemoryType
impl Copy for MemoryType
impl Eq for MemoryType
impl StructuralPartialEq for MemoryType
Auto Trait Implementations§
impl Freeze for MemoryType
impl RefUnwindSafe for MemoryType
impl Send for MemoryType
impl Sync for MemoryType
impl Unpin for MemoryType
impl UnwindSafe for MemoryType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.