Skip to main content

AddressLoader

Trait AddressLoader 

Source
pub trait AddressLoader: Clone {
    // Required method
    fn load_addresses(
        self,
        lookups: &[MessageAddressTableLookup],
    ) -> Result<LoadedAddresses, AddressLoaderError>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl AddressLoader for SimpleAddressLoader

Available on non-target_os=solana only.