Enum soroban_sdk::xdr::curr::ScVal
pub enum ScVal {
Show 22 variants
Bool(bool),
Void,
Error(ScError),
U32(u32),
I32(i32),
U64(u64),
I64(i64),
Timepoint(TimePoint),
Duration(Duration),
U128(UInt128Parts),
I128(Int128Parts),
U256(UInt256Parts),
I256(Int256Parts),
Bytes(ScBytes),
String(ScString),
Symbol(ScSymbol),
Vec(Option<ScVec>),
Map(Option<ScMap>),
Address(ScAddress),
LedgerKeyContractInstance,
LedgerKeyNonce(ScNonceKey),
ContractInstance(ScContractInstance),
}
Variants§
Bool(bool)
Void
Error(ScError)
U32(u32)
I32(i32)
U64(u64)
I64(i64)
Timepoint(TimePoint)
Duration(Duration)
U128(UInt128Parts)
I128(Int128Parts)
U256(UInt256Parts)
I256(Int256Parts)
Bytes(ScBytes)
String(ScString)
Symbol(ScSymbol)
Vec(Option<ScVec>)
Map(Option<ScMap>)
Address(ScAddress)
LedgerKeyContractInstance
LedgerKeyNonce(ScNonceKey)
ContractInstance(ScContractInstance)
Implementations§
Trait Implementations§
§impl<'arbitrary> Arbitrary<'arbitrary> for ScVal
impl<'arbitrary> Arbitrary<'arbitrary> for ScVal
§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<ScVal, Error>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<ScVal, Error>
Generate an arbitrary value of
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<ScVal, Error>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<ScVal, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read more§impl<'de> Deserialize<'de> for ScVal
impl<'de> Deserialize<'de> for ScVal
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ScVal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ScVal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Discriminant<ScValType> for ScVal
impl Discriminant<ScValType> for ScVal
fn discriminant(&self) -> ScValType
§impl Ord for ScVal
impl Ord for ScVal
§impl PartialOrd for ScVal
impl PartialOrd for ScVal
§fn partial_cmp(&self, other: &ScVal) -> Option<Ordering>
fn partial_cmp(&self, other: &ScVal) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more§impl ReadXdr for ScVal
impl ReadXdr for ScVal
§fn read_xdr<R>(r: &mut DepthLimitedRead<R>) -> Result<ScVal, Error>where
R: Read,
fn read_xdr<R>(r: &mut DepthLimitedRead<R>) -> Result<ScVal, Error>where
R: Read,
Read the XDR and construct the type. Read more
§fn read_xdr_base64<R>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_base64<R>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
Construct the type from the XDR bytes base64 encoded. Read more
§fn read_xdr_to_end<R>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_to_end<R>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
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>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_base64_to_end<R>(r: &mut DepthLimitedRead<R>) -> Result<Self, Error>where
R: Read,
Construct the type from the XDR bytes base64 encoded. Read more
§fn read_xdr_into<R>(&mut self, r: &mut DepthLimitedRead<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into<R>(&mut self, r: &mut DepthLimitedRead<R>) -> Result<(), Error>where
R: Read,
Read the XDR and construct the type. Read more
§fn read_xdr_into_to_end<R>(
&mut self,
r: &mut DepthLimitedRead<R>
) -> Result<(), Error>where
R: Read,
fn read_xdr_into_to_end<R>(
&mut self,
r: &mut DepthLimitedRead<R>
) -> Result<(), Error>where
R: Read,
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 DepthLimitedRead<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
fn read_xdr_iter<R>(r: &mut DepthLimitedRead<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 DepthLimitedRead<R>
) -> ReadXdrIter<DecoderReader<'_, R>, Self> ⓘwhere
R: Read,
fn read_xdr_base64_iter<R>(
r: &mut DepthLimitedRead<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_with_depth_limit(
bytes: impl AsRef<[u8]>,
depth_limit: u32
) -> Result<Self, Error>
fn from_xdr_with_depth_limit( bytes: impl AsRef<[u8]>, depth_limit: u32 ) -> Result<Self, Error>
Construct the type from the XDR bytes, specifying a depth limit. Read more
§fn from_xdr(bytes: impl AsRef<[u8]>) -> Result<Self, Error>
fn from_xdr(bytes: impl AsRef<[u8]>) -> Result<Self, Error>
Construct the type from the XDR bytes, using the default depth limit. Read more
§impl Serialize for ScVal
impl Serialize for ScVal
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl TryFrom<&Address> for ScVal
impl TryFrom<&Address> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<&Bytes> for ScVal
impl TryFrom<&Bytes> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl<const N: usize> TryFrom<&BytesN<N>> for ScVal
impl<const N: usize> TryFrom<&BytesN<N>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<&ContractContext> for ScVal
impl TryFrom<&ContractContext> for ScVal
source§impl TryFrom<&ContractExecutable> for ScVal
impl TryFrom<&ContractExecutable> for ScVal
source§impl TryFrom<&CreateContractHostFnContext> for ScVal
impl TryFrom<&CreateContractHostFnContext> for ScVal
source§impl TryFrom<&Duration> for ScVal
impl TryFrom<&Duration> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<&DurationSmall> for ScVal
impl TryFrom<&DurationSmall> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: &DurationSmall) -> Result<ScVal, ConversionError>
fn try_from(value: &DurationSmall) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<&I256> for ScVal
impl TryFrom<&I256> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<&I256Small> for ScVal
impl TryFrom<&I256Small> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: &I256Small) -> Result<ScVal, ConversionError>
fn try_from(value: &I256Small) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<&InvokerContractAuthEntry> for ScVal
impl TryFrom<&InvokerContractAuthEntry> for ScVal
source§impl<K, V> TryFrom<&Map<K, V>> for ScVal
impl<K, V> TryFrom<&Map<K, V>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<&String> for ScVal
impl TryFrom<&String> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<&SubContractInvocation> for ScVal
impl TryFrom<&SubContractInvocation> for ScVal
source§impl TryFrom<&Symbol> for ScVal
impl TryFrom<&Symbol> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<&Timepoint> for ScVal
impl TryFrom<&Timepoint> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<&TimepointSmall> for ScVal
impl TryFrom<&TimepointSmall> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: &TimepointSmall) -> Result<ScVal, ConversionError>
fn try_from(value: &TimepointSmall) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<&U256> for ScVal
impl TryFrom<&U256> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<&U256Small> for ScVal
impl TryFrom<&U256Small> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: &U256Small) -> Result<ScVal, ConversionError>
fn try_from(value: &U256Small) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl<T> TryFrom<&Vec<T>> for ScVal
impl<T> TryFrom<&Vec<T>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl<T0, T1, T2> TryFrom<(T0, T1, T2)> for ScVal
impl<T0, T1, T2> TryFrom<(T0, T1, T2)> for ScVal
§impl<T0, T1, T2, T3> TryFrom<(T0, T1, T2, T3)> for ScVal
impl<T0, T1, T2, T3> TryFrom<(T0, T1, T2, T3)> for ScVal
§impl<T0, T1, T2, T3, T4> TryFrom<(T0, T1, T2, T3, T4)> for ScVal
impl<T0, T1, T2, T3, T4> TryFrom<(T0, T1, T2, T3, T4)> for ScVal
§impl<T0, T1, T2, T3, T4, T5> TryFrom<(T0, T1, T2, T3, T4, T5)> for ScVal
impl<T0, T1, T2, T3, T4, T5> TryFrom<(T0, T1, T2, T3, T4, T5)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6> TryFrom<(T0, T1, T2, T3, T4, T5, T6)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6> TryFrom<(T0, T1, T2, T3, T4, T5, T6)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> for ScVal
§impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> for ScVal
impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> TryFrom<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> for ScVal
source§impl TryFrom<Address> for ScVal
impl TryFrom<Address> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<Bytes> for ScVal
impl TryFrom<Bytes> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl<const N: usize> TryFrom<BytesN<N>> for ScVal
impl<const N: usize> TryFrom<BytesN<N>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<ContractContext> for ScVal
impl TryFrom<ContractContext> for ScVal
source§impl TryFrom<ContractExecutable> for ScVal
impl TryFrom<ContractExecutable> for ScVal
source§impl TryFrom<CreateContractHostFnContext> for ScVal
impl TryFrom<CreateContractHostFnContext> for ScVal
source§impl TryFrom<Duration> for ScVal
impl TryFrom<Duration> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<DurationSmall> for ScVal
impl TryFrom<DurationSmall> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: DurationSmall) -> Result<ScVal, ConversionError>
fn try_from(value: DurationSmall) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<I256> for ScVal
impl TryFrom<I256> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<I256Small> for ScVal
impl TryFrom<I256Small> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: I256Small) -> Result<ScVal, ConversionError>
fn try_from(value: I256Small) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<InvokerContractAuthEntry> for ScVal
impl TryFrom<InvokerContractAuthEntry> for ScVal
source§impl<K, V> TryFrom<Map<K, V>> for ScVal
impl<K, V> TryFrom<Map<K, V>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<String> for ScVal
impl TryFrom<String> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<SubContractInvocation> for ScVal
impl TryFrom<SubContractInvocation> for ScVal
source§impl TryFrom<Symbol> for ScVal
impl TryFrom<Symbol> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§impl TryFrom<Timepoint> for ScVal
impl TryFrom<Timepoint> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<TimepointSmall> for ScVal
impl TryFrom<TimepointSmall> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: TimepointSmall) -> Result<ScVal, ConversionError>
fn try_from(value: TimepointSmall) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl TryFrom<U256> for ScVal
impl TryFrom<U256> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl TryFrom<U256Small> for ScVal
impl TryFrom<U256Small> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§fn try_from(value: U256Small) -> Result<ScVal, ConversionError>
fn try_from(value: U256Small) -> Result<ScVal, ConversionError>
Performs the conversion.
source§impl<T> TryFrom<Vec<T>> for ScVal
impl<T> TryFrom<Vec<T>> for ScVal
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
§impl<E> TryFromVal<E, &ScVal> for Symbolwhere
E: Env,
impl<E> TryFromVal<E, &ScVal> for Symbolwhere
E: Env,
§impl<E> TryFromVal<E, ScVal> for Symbolwhere
E: Env,
impl<E> TryFromVal<E, ScVal> for Symbolwhere
E: Env,
§impl<E> TryFromVal<E, ScVal> for Valwhere
E: Env,
Object: for<'a> TryFromVal<E, ScValObjRef<'a>, Error = ConversionError>,
impl<E> TryFromVal<E, ScVal> for Valwhere
E: Env,
Object: for<'a> TryFromVal<E, ScValObjRef<'a>, Error = ConversionError>,
type Error = ConversionError
fn try_from_val( env: &E, val: &ScVal ) -> Result<Val, <Val as TryFromVal<E, ScVal>>::Error>
§impl<E> TryFromVal<E, Symbol> for ScValwhere
E: Env,
impl<E> TryFromVal<E, Symbol> for ScValwhere
E: Env,
§impl<E> TryFromVal<E, Val> for ScValwhere
E: Env,
ScValObject: TryFromVal<E, Object>,
impl<E> TryFromVal<E, Val> for ScValwhere
E: Env,
ScValObject: TryFromVal<E, Object>,
type Error = ConversionError
fn try_from_val(env: &E, val: &Val) -> Result<ScVal, ConversionError>
source§impl<K, V> TryFromVal<Env, Map<K, V>> for ScVal
impl<K, V> TryFromVal<Env, Map<K, V>> for ScVal
type Error = ConversionError
fn try_from_val(_e: &Env, v: &Map<K, V>) -> Result<Self, ConversionError>
source§impl TryFromVal<Env, ScVal> for Address
impl TryFromVal<Env, ScVal> for Address
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for Bytes
impl TryFromVal<Env, ScVal> for Bytes
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl<const N: usize> TryFromVal<Env, ScVal> for BytesN<N>
impl<const N: usize> TryFromVal<Env, ScVal> for BytesN<N>
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for ContractContext
impl TryFromVal<Env, ScVal> for ContractContext
source§impl TryFromVal<Env, ScVal> for ContractExecutable
impl TryFromVal<Env, ScVal> for ContractExecutable
source§impl TryFromVal<Env, ScVal> for CreateContractHostFnContext
impl TryFromVal<Env, ScVal> for CreateContractHostFnContext
source§impl TryFromVal<Env, ScVal> for Duration
impl TryFromVal<Env, ScVal> for Duration
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for I256
impl TryFromVal<Env, ScVal> for I256
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for InvokerContractAuthEntry
impl TryFromVal<Env, ScVal> for InvokerContractAuthEntry
source§impl<K, V> TryFromVal<Env, ScVal> for Map<K, V>
impl<K, V> TryFromVal<Env, ScVal> for Map<K, V>
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for String
impl TryFromVal<Env, ScVal> for String
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for SubContractInvocation
impl TryFromVal<Env, ScVal> for SubContractInvocation
source§impl TryFromVal<Env, ScVal> for Symbol
impl TryFromVal<Env, ScVal> for Symbol
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for Timepoint
impl TryFromVal<Env, ScVal> for Timepoint
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl TryFromVal<Env, ScVal> for U256
impl TryFromVal<Env, ScVal> for U256
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, Self::Error>
source§impl<T> TryFromVal<Env, ScVal> for Vec<T>
impl<T> TryFromVal<Env, ScVal> for Vec<T>
type Error = ConversionError
fn try_from_val(env: &Env, val: &ScVal) -> Result<Self, ConversionError>
source§impl TryFromVal<Env, Symbol> for ScVal
impl TryFromVal<Env, Symbol> for ScVal
type Error = ConversionError
fn try_from_val(_e: &Env, v: &Symbol) -> Result<Self, ConversionError>
§impl WriteXdr for ScVal
impl WriteXdr for ScVal
fn write_xdr<W>(&self, w: &mut DepthLimitedWrite<W>) -> Result<(), Error>where
W: Write,
fn to_xdr_with_depth_limit(&self, depth_limit: u32) -> Result<Vec<u8>, Error>
fn to_xdr(&self) -> Result<Vec<u8>, Error>
fn to_xdr_base64_with_depth_limit( &self, depth_limit: u32 ) -> Result<String, Error>
fn to_xdr_base64(&self) -> Result<String, Error>
impl Eq for ScVal
impl StructuralEq for ScVal
impl StructuralPartialEq for ScVal
impl Union<ScValType> for ScVal
Auto Trait Implementations§
impl RefUnwindSafe for ScVal
impl Send for ScVal
impl Sync for ScVal
impl Unpin for ScVal
impl UnwindSafe for ScVal
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
§impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
§impl<T, U, V, W, E, C> Compare<(T, U, V, W)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W>,
impl<T, U, V, W, E, C> Compare<(T, U, V, W)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W>,
type Error = E
fn compare( &self, a: &(T, U, V, W), b: &(T, U, V, W) ) -> Result<Ordering, <C as Compare<(T, U, V, W)>>::Error>
§impl<T, U, V, W, X, E, C> Compare<(T, U, V, W, X)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W> + Compare<X>,
impl<T, U, V, W, X, E, C> Compare<(T, U, V, W, X)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W> + Compare<X>,
type Error = E
fn compare( &self, a: &(T, U, V, W, X), b: &(T, U, V, W, X) ) -> Result<Ordering, <C as Compare<(T, U, V, W, X)>>::Error>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.