Trait test_assembler::LabelMaker [] [src]

pub trait LabelMaker {
    fn new() -> Self;
    fn from_const(val: u64) -> Self;
    fn from_label(other: &Self) -> Self;
    fn from_label_offset(other: &Self, offset: i64) -> Self;
}

Methods for creating a Label (or a RealLabel, but don't do that).

Required Methods

Create an undefined label.

Create a label with a constant value val.

Create a label whose value is equal to other.

Create a label whose value is equal to other plus offset.

Implementors