pub struct MemoryInterval {
pub offset: u32,
pub size: u32,
}
Expand description
Interval in wasm program memory.
Fields§
§offset: u32
Interval offset in bytes.
size: u32
Interval size in bytes.
Implementations§
Trait Implementations§
Source§impl Clone for MemoryInterval
impl Clone for MemoryInterval
Source§fn clone(&self) -> MemoryInterval
fn clone(&self) -> MemoryInterval
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 MemoryInterval
impl Debug for MemoryInterval
Source§impl Decode for MemoryInterval
impl Decode for MemoryInterval
Source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
Attempt to deserialise the value from input.
Source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Source§impl Encode for MemoryInterval
impl Encode for MemoryInterval
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl From<MemoryInterval> for (u32, u32)
impl From<MemoryInterval> for (u32, u32)
Source§fn from(val: MemoryInterval) -> Self
fn from(val: MemoryInterval) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MemoryInterval
impl PartialEq for MemoryInterval
impl Copy for MemoryInterval
impl EncodeLike for MemoryInterval
impl Eq for MemoryInterval
impl StructuralPartialEq for MemoryInterval
Auto Trait Implementations§
impl Freeze for MemoryInterval
impl RefUnwindSafe for MemoryInterval
impl Send for MemoryInterval
impl Sync for MemoryInterval
impl Unpin for MemoryInterval
impl UnwindSafe for MemoryInterval
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