[][src]Struct darkroom::InstructionSet

pub struct InstructionSet<'a> {
    pub hydrate_writes: bool,
    // some fields omitted
}

Contains read and write instructions for the Cut Register, InstructionSet should be immutable once initialized.

Cut Instruction Set

Fields

hydrate_writes: bool

Trait Implementations

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

impl<'a> Debug for InstructionSet<'a>[src]

impl<'a> Default for InstructionSet<'a>[src]

impl<'de, 'a> Deserialize<'de> for InstructionSet<'a> where
    'de: 'a,
    InstructionSet<'a>: Default
[src]

impl<'a> PartialEq<InstructionSet<'a>> for InstructionSet<'a>[src]

impl<'a> Serialize for InstructionSet<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for InstructionSet<'a>

impl<'a> Send for InstructionSet<'a>

impl<'a> Sync for InstructionSet<'a>

impl<'a> Unpin for InstructionSet<'a>

impl<'a> UnwindSafe for InstructionSet<'a>

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<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToStringHidden for T where
    T: Serialize + ?Sized
[src]

fn to_string_hidden(&self) -> Result<String, FrError>[src]

Pretty formatting for Register serialization, any cut variable names starting with an underscore are presented as ${_HIDDEN} in stdout

impl<T> ToStringPretty for T where
    T: Serialize + ?Sized
[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.