Type Definition soroban_sdk::xdr::Uint32

pub type Uint32 = u32;

Trait Implementations§

§

impl AsI256 for u32

§

fn as_i256(self) -> I256

Perform an as conversion to a I256.
§

impl AsU256 for u32

§

fn as_u256(self) -> U256

Perform an as conversion to a U256.
§

impl RawValConvertible for u32

§

fn is_val_type(v: RawVal) -> bool

Returns true if v is in a union state compatible with Self.
§

unsafe fn unchecked_from_val(v: RawVal) -> u32

Converts the bits making up a Val into Self without checking that the Val is tagged correctly, assuming that such a check has been performed elsewhere. It is the caller’s responsibility to arrange that such checks have occurred before calling unchecked_from_val, which is why it is marked as unsafe (it does not represent a risk of memory-unsafety, merely “serious logic errors”).
§

fn try_convert(v: RawVal) -> Option<Self>

Attempt a conversion from Val to Self, returning None if the provided Val is not tagged correctly. By default this calls Self::is_val_type and Self::unchecked_from_val, but it can be customized on a type-by-type basis to avoid redundant tag tests and produce more efficient code, as it is done for Static values like bool.
§

impl ReadXdr for u32

§

fn read_xdr(r: &mut impl Read) -> Result<u32, Error>

Read the XDR and construct the type. Read more
§

fn read_xdr_base64(r: &mut impl Read) -> Result<Self, Error>

Construct the type from the XDR bytes base64 encoded. Read more
§

fn read_xdr_to_end(r: &mut impl Read) -> Result<Self, Error>

Read the XDR and construct the type, and consider it an error if the read does not completely consume the read implementation. Read more
§

fn read_xdr_base64_to_end(r: &mut impl Read) -> Result<Self, Error>

Construct the type from the XDR bytes base64 encoded. Read more
§

fn read_xdr_into(&mut self, r: &mut impl Read) -> Result<(), Error>

Read the XDR and construct the type. Read more
§

fn read_xdr_into_to_end(&mut self, r: &mut impl Read) -> Result<(), Error>

Read the XDR into the existing value, and consider it an error if the read does not completely consume the read implementation. Read more
§

fn read_xdr_iter<R>(r: &mut R) -> ReadXdrIter<&mut R, Self> where R: Read,

Create an iterator that reads the read implementation as a stream of values that are read into the implementing type. Read more
§

fn read_xdr_base64_iter<R>(r: &mut R) -> ReadXdrIter<DecoderReader<'_, R>, Self> where R: Read,

Create an iterator that reads the read implementation as a stream of values that are read into the implementing type.
§

fn from_xdr(bytes: impl AsRef<[u8]>) -> Result<Self, Error>

Construct the type from the XDR bytes. Read more
§

fn from_xdr_base64(b64: impl AsRef<[u8]>) -> Result<Self, Error>

Construct the type from the XDR bytes base64 encoded. Read more
§

impl<E> TryFromVal<E, RawVal> for u32where E: Env,

§

impl WriteXdr for u32

§

fn write_xdr(&self, w: &mut impl Write) -> Result<(), Error>

§

fn to_xdr(&self) -> Result<Vec<u8, Global>, Error>

§

fn to_xdr_base64(&self) -> Result<String, Error>