pub trait HasView<'a> {
// Required method
fn view(&self) -> &'a AccountView;
}Expand description
Helper trait for types that hold an &AccountView.
pub trait HasView<'a> {
// Required method
fn view(&self) -> &'a AccountView;
}Helper trait for types that hold an &AccountView.