pub trait ConfigAccount {
    fn init(&mut self, admin: Pubkey, mint: Pubkey) -> Result<()>;
    fn update(&mut self, settings: ConfigSettings) -> Result<()>;
}
Expand description

ConfigAccount

Required Methods

Implementations on Foreign Types

Implementors