tensor_vipers/
validate.rs

1//! Validations for accounts.
2#![allow(clippy::all)]
3
4use anchor_lang::prelude::*;
5
6/// Validates the contents of a variable. Generally used for [Accounts] structs and struct members.
7pub trait Validate<'info> {
8    /// Validates the account struct.
9    fn validate(&self) -> Result<()>;
10}