Trait concordium_std::Seek
source · [−]Expand description
The Seek
trait provides a cursor which can be moved within a stream of
bytes. This is essentially a copy of
std::io::Seek, but
avoiding its dependency on std::io::Error
, and the associated code size
increase. Additionally, the positions are expressed in terms of 32-bit
integers since this is adequate for the sizes of data in smart contracts.