Type Alias spl_tlv_account_resolution::state::AccountDataResult
source · pub type AccountDataResult = Result<Option<Vec<u8>>, AccountFetchError>;
Expand description
Type representing the output of an account fetching function, for easy chaining between APIs
Aliased Type§
enum AccountDataResult {
Ok(Option<Vec<u8>>),
Err(Box<dyn Error + Sync + Send>),
}