This commit is contained in:
Hardhat Chad
2024-02-14 18:30:51 +00:00
parent bbc1d835ea
commit 25c2b17ee9
21 changed files with 670 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
use bytemuck::{Pod, Zeroable};
use crate::impl_to_bytes;
use crate::{impl_account_from_bytes, impl_to_bytes};
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
@@ -16,3 +16,4 @@ pub struct Bus {
}
impl_to_bytes!(Bus);
impl_account_from_bytes!(Bus);