pub trait Handler<'a, T> {
type Output;
// Required method
fn call(
self,
accounts: &mut &'a [AccountInfo],
instruction_data: &mut &'a [u8],
) -> Result<Self::Output, Error>;
}pub trait Handler<'a, T> {
type Output;
// Required method
fn call(
self,
accounts: &mut &'a [AccountInfo],
instruction_data: &mut &'a [u8],
) -> Result<Self::Output, Error>;
}