Trait fuel_tx::field::Outputs

source ·
pub trait Outputs {
    fn outputs(&self) -> &Vec<Output>;
    fn outputs_mut(&mut self) -> &mut Vec<Output>;
    fn outputs_offset(&self) -> usize;
    fn outputs_offset_at(&self, idx: usize) -> Option<usize>;
}

Required Methods

Returns the offset to the Output at idx index, if any.

Implementors