Struct everscale_types::models::account::StateInit
source · pub struct StateInit<C: CellFamily> {
pub split_depth: Option<SplitDepth>,
pub special: Option<SpecialFlags>,
pub code: Option<CellContainer<C>>,
pub data: Option<CellContainer<C>>,
pub libraries: Dict<C, CellHash, SimpleLib<C>>,
}Expand description
Deployed account state.
Fields§
§split_depth: Option<SplitDepth>Optional split depth for large smart contracts.
special: Option<SpecialFlags>Optional special contract flags.
code: Option<CellContainer<C>>Optional contract code.
data: Option<CellContainer<C>>Optional contract data.
libraries: Dict<C, CellHash, SimpleLib<C>>Libraries used in smart-contract.
Implementations§
source§impl<C: CellFamily> StateInit<C>
impl<C: CellFamily> StateInit<C>
Trait Implementations§
source§impl<C: CellFamily> Clone for StateInit<C>
impl<C: CellFamily> Clone for StateInit<C>
source§impl<C: CellFamily> Debug for StateInit<C>
impl<C: CellFamily> Debug for StateInit<C>
source§impl<C: CellFamily> Default for StateInit<C>
impl<C: CellFamily> Default for StateInit<C>
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for StateInit<C>
impl<'tlb, C: CellFamily> Load<'tlb, C> for StateInit<C>
source§impl<C: CellFamily> PartialEq<StateInit<C>> for StateInit<C>
impl<C: CellFamily> PartialEq<StateInit<C>> for StateInit<C>
source§impl<C: CellFamily> Store<C> for StateInit<C>
impl<C: CellFamily> Store<C> for StateInit<C>
source§fn store_into(
&self,
__builder: &mut CellBuilder<C>,
__finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, __builder: &mut CellBuilder<C>, __finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.