pub trait Validate<'info> {
    fn validate(&self) -> Result<()>;
}
Expand description

Validates the contents of a variable. Generally used for Accounts structs and struct members.

Required Methods

Validates the account struct.

Implementors