pub struct EMPTY_CELL { /* private fields */ }Methods from Deref<Target = Cell>§
pub fn parser(&self) -> CellParser<'_>
pub fn parse<F, T>(&self, parse: F) -> Result<T, TonCellError>
pub fn parse_fully<F, T>(&self, parse: F) -> Result<T, TonCellError>
pub fn reference(&self, idx: usize) -> Result<&ArcCell, TonCellError>
pub fn data(&self) -> &[u8] ⓘ
pub fn bit_len(&self) -> usize
pub fn references(&self) -> &[ArcCell] ⓘ
pub fn cell_depth(&self) -> u16
pub fn get_depth(&self, level: u8) -> u16
pub fn cell_hash(&self) -> TonHash
pub fn get_hash(&self, level: u8) -> TonHash
pub fn is_exotic(&self) -> bool
pub fn is_library(&self) -> bool
pub fn cell_hash_base64(&self) -> String
pub fn load_snake_formatted_string(&self) -> Result<String, TonCellError>
Sourcepub fn expect_reference_count(
&self,
expected_refs: usize,
) -> Result<(), TonCellError>
👎Deprecated
pub fn expect_reference_count( &self, expected_refs: usize, ) -> Result<(), TonCellError>
It is recommended to use CellParser::next_reference() instead
Trait Implementations§
Source§impl Deref for EMPTY_CELL
impl Deref for EMPTY_CELL
impl LazyStatic for EMPTY_CELL
Auto Trait Implementations§
impl Freeze for EMPTY_CELL
impl RefUnwindSafe for EMPTY_CELL
impl Send for EMPTY_CELL
impl Sync for EMPTY_CELL
impl Unpin for EMPTY_CELL
impl UnwindSafe for EMPTY_CELL
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more