Type Definition soroban_sdk::xdr::Uint32
pub type Uint32 = u32;
Trait Implementations§
§impl RawValConvertible for u32
impl RawValConvertible for u32
§fn is_val_type(v: RawVal) -> bool
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
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>
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
impl ReadXdr for u32
§fn read_xdr_base64(r: &mut impl Read) -> Result<Self, Error>
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>
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>
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>
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>
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,
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,
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.