trident-syn 0.12.0

Trident is Rust based fuzzing framework for Solana programs written in Anchor.
Documentation
1
2
3
4
5
6
7
8
9
10
use proc_macro2::TokenStream;
use quote::ToTokens;

use crate::types::trident_fuzz_test_methods::TridentFuzzTestMethodsStruct;

impl ToTokens for TridentFuzzTestMethodsStruct {
    fn to_tokens(&self, _tokens: &mut TokenStream) {
        // We dont need to do anything here, kept for future use
    }
}