pub struct Limits64 {
pub min: u64,
pub max: Option<u64>,
}
Expand description
Min/max limits used for 64-bit memories
Fields§
§min: u64
The minimum number of units for this type.
max: Option<u64>
An optional maximum number of units for this type.
Trait Implementations§
source§impl PartialEq for Limits64
impl PartialEq for Limits64
impl Copy for Limits64
impl Eq for Limits64
impl StructuralEq for Limits64
impl StructuralPartialEq for Limits64
Auto Trait Implementations§
impl RefUnwindSafe for Limits64
impl Send for Limits64
impl Sync for Limits64
impl Unpin for Limits64
impl UnwindSafe for Limits64
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