Macro raml::store_field [] [src]

macro_rules! store_field {
    ($block: ident, $offset: expr, $val: ident, ) => { ... };
}

Stores the $val at $offset in the $block.

Example

// stores some_value in the first field in the given block
store_field!(some_block, 1, some_value)