pub trait TokenMapLoader<'info> {
// Required methods
fn load_token_map(&self) -> Result<TokenMapRef<'_>, Error>;
fn load_token_map_mut(&self) -> Result<TokenMapMut<'_>, Error>;
}
Expand description
Token Map Loader.
Required Methods§
Sourcefn load_token_map(&self) -> Result<TokenMapRef<'_>, Error>
fn load_token_map(&self) -> Result<TokenMapRef<'_>, Error>
Load token map.
Sourcefn load_token_map_mut(&self) -> Result<TokenMapMut<'_>, Error>
fn load_token_map_mut(&self) -> Result<TokenMapMut<'_>, Error>
Load token map with mutable access.