[][src]Struct spectrusty::memory::MemPageableRomRamExRom

pub struct MemPageableRomRamExRom<M: MemoryBlock> { /* fields omitted */ }

Trait Implementations

impl<M: MemoryBlock> Clone for MemPageableRomRamExRom<M> where
    M: Clone,
    M::Pages: Copy,
    &'a mut M::Pages: IntoIterator<Item = &'a mut NonNull<<M::Pages as MemoryPages>::PagePtrType>>, 
[src]

impl<M: MemoryBlock> Default for MemPageableRomRamExRom<M>[src]

impl<'de, M: MemoryBlock> Deserialize<'de> for MemPageableRomRamExRom<M> where
    Box<M>: MemDeExt,
    &'a mut M::Pages: IntoIterator<Item = &'a mut NonNull<<M::Pages as MemoryPages>::PagePtrType>>, 
[src]

impl<M: MemoryBlock> Serialize for MemPageableRomRamExRom<M> where
    M::Pages: Copy,
    &'a Box<M>: MemSerExt,
    &'a M::Pages: IntoIterator<Item = &'a NonNull<<M::Pages as MemoryPages>::PagePtrType>>, 
[src]

impl<M> ZxMemory for MemPageableRomRamExRom<M> where
    M: MemoryBlock, 
[src]

Auto Trait Implementations

impl<M> !RefUnwindSafe for MemPageableRomRamExRom<M>

impl<M> !Send for MemPageableRomRamExRom<M>

impl<M> !Sync for MemPageableRomRamExRom<M>

impl<M> Unpin for MemPageableRomRamExRom<M> where
    <M as MemoryBlock>::Pages: MemoryPages + Unpin

impl<M> UnwindSafe for MemPageableRomRamExRom<M> where
    M: UnwindSafe,
    <<M as MemoryBlock>::Pages as MemoryPages>::PagePtrType: RefUnwindSafe,
    <M as MemoryBlock>::Pages: MemoryPages + UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<S, T> IntoSample<S> for T where
    S: FromSample<T>, 
[src]

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>,