[][src]Enum blend::runtime::InstanceDataFormat

pub enum InstanceDataFormat<'a> {
    Block(&'a Block),
    Raw(&'a [u8]),
}

An Instance's data can be a reference to a Block if the Instance represents a root or subsidiary block, or it can be raw bytes if the Instance was created by accessing a field in another Instance.

Variants

Block(&'a Block)

Methods

impl<'a> InstanceDataFormat<'a>[src]

pub fn get(&self, start: usize, len: usize) -> &'a [u8][src]

get accesses only a specific slice of the underlying data.

pub fn data(&self) -> &'a [u8][src]

Simplifies the access to the underlying data inside the InstanceDataFormat.

pub fn memory_address(&self) -> Option<NonZeroU64>[src]

Returns the memory address of the underlying block, if it has one.

Trait Implementations

impl<'a> Clone for InstanceDataFormat<'a>[src]

Auto Trait Implementations

impl<'a> Send for InstanceDataFormat<'a>

impl<'a> Unpin for InstanceDataFormat<'a>

impl<'a> Sync for InstanceDataFormat<'a>

impl<'a> UnwindSafe for InstanceDataFormat<'a>

impl<'a> RefUnwindSafe for InstanceDataFormat<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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