pub trait WithComputeUnitPrice {
    // Required method
    fn with_compute_unit_price(self, compute_unit_price: Option<&u64>) -> Self;
}

Required Methods§

source

fn with_compute_unit_price(self, compute_unit_price: Option<&u64>) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WithComputeUnitPrice for Vec<Instruction>

source§

fn with_compute_unit_price(self, compute_unit_price: Option<&u64>) -> Self

Implementors§