pub enum StateConvertor {
Unit,
TypedEncoder(StateTy),
TypedFieldEncoder(StateTy),
AluVM(LibSite),
}
Variants§
Unit
TypedEncoder(StateTy)
TypedFieldEncoder(StateTy)
AluVM(LibSite)
Execute a custom function.
Tuple Fields
§
0: LibSite
The entry point to the script (virtual machine uses libraries from
crate::Semantics
).
Implementations§
Source§impl StateConvertor
impl StateConvertor
pub fn convert( &self, sem_id: SemId, value: StateValue, sys: &TypeSystem, ) -> Result<Option<StrictVal>, StateConvertError>
Trait Implementations§
Source§impl Clone for StateConvertor
impl Clone for StateConvertor
Source§fn clone(&self) -> StateConvertor
fn clone(&self) -> StateConvertor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StateConvertor
impl Debug for StateConvertor
Source§impl<'de> Deserialize<'de> for StateConvertor
impl<'de> Deserialize<'de> for StateConvertor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for StateConvertor
impl Hash for StateConvertor
Source§impl Ord for StateConvertor
impl Ord for StateConvertor
Source§fn cmp(&self, other: &StateConvertor) -> Ordering
fn cmp(&self, other: &StateConvertor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StateConvertor
impl PartialEq for StateConvertor
Source§impl PartialOrd for StateConvertor
impl PartialOrd for StateConvertor
Source§impl Serialize for StateConvertor
impl Serialize for StateConvertor
Source§impl StrictDecode for StateConvertor
impl StrictDecode for StateConvertor
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for StateConvertor
impl StrictDumb for StateConvertor
fn strict_dumb() -> Self
Source§impl StrictEncode for StateConvertor
impl StrictEncode for StateConvertor
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<(), Error>
Source§impl StrictSum for StateConvertor
impl StrictSum for StateConvertor
const ALL_VARIANTS: &'static [(u8, &'static str)]
fn variant_name(&self) -> &'static str
fn strict_check_variants()
fn variant_name_by_tag(tag: u8) -> Option<VariantName>
fn variant_ord(&self) -> u8
Source§impl StrictType for StateConvertor
impl StrictType for StateConvertor
const STRICT_LIB_NAME: &'static str = LIB_NAME_SONIC
fn strict_name() -> Option<TypeName>
Source§impl StrictUnion for StateConvertor
impl StrictUnion for StateConvertor
fn strict_type_info() -> TypeInfo<Self>
impl Eq for StateConvertor
impl StructuralPartialEq for StateConvertor
Auto Trait Implementations§
impl Freeze for StateConvertor
impl RefUnwindSafe for StateConvertor
impl Send for StateConvertor
impl Sync for StateConvertor
impl Unpin for StateConvertor
impl UnwindSafe for StateConvertor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.