[][src]Struct wiggle_test::MemArea

pub struct MemArea {
    pub ptr: u32,
    pub len: u32,
}

Fields

ptr: u32len: u32

Methods

impl MemArea[src]

pub fn overlapping(&self, b: Self) -> bool[src]

pub fn non_overlapping_set<M>(areas: M) -> bool where
    M: Into<MemAreas>, 
[src]

Trait Implementations

impl Clone for MemArea[src]

impl Copy for MemArea[src]

impl Debug for MemArea[src]

impl Eq for MemArea[src]

impl Ord for MemArea[src]

impl PartialEq<MemArea> for MemArea[src]

impl PartialOrd<MemArea> for MemArea[src]

impl StructuralEq for MemArea[src]

impl StructuralPartialEq for MemArea[src]

Auto Trait Implementations

impl RefUnwindSafe for MemArea

impl Send for MemArea

impl Sync for MemArea

impl Unpin for MemArea

impl UnwindSafe for MemArea

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointee for T[src]

type Pointer = u32

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,