Struct everscale_types::models::account::SimpleLib
source · pub struct SimpleLib<C: CellFamily> {
pub public: bool,
pub root: CellContainer<C>,
}Expand description
Simple TVM library.
Fields§
§public: boolWhether this library is accessible from other accounts.
root: CellContainer<C>Reference to the library cell.
Trait Implementations§
source§impl<C: CellFamily> Clone for SimpleLib<C>
impl<C: CellFamily> Clone for SimpleLib<C>
source§impl<C: CellFamily> Debug for SimpleLib<C>
impl<C: CellFamily> Debug for SimpleLib<C>
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for SimpleLib<C>
impl<'tlb, C: CellFamily> Load<'tlb, C> for SimpleLib<C>
source§impl<C: CellFamily> PartialEq<SimpleLib<C>> for SimpleLib<C>
impl<C: CellFamily> PartialEq<SimpleLib<C>> for SimpleLib<C>
source§impl<C: CellFamily> Store<C> for SimpleLib<C>
impl<C: CellFamily> Store<C> for SimpleLib<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.