Attribute Macro anchor_attribute_account::zero_copy[][src]

#[zero_copy]
Expand description

A data structure that can be used as an internal field for a zero copy deserialized account, i.e., a struct marked with #[account(zero_copy)].

This is just a convenient alias for

#[derive(Copy, Clone)]
#[repr(packed)]
struct MyStruct {...}