pub enum ConversionKind {
Identity,
IntCast,
ObjectRef,
StringUtf8,
EnumCast,
StructOpaque,
FName,
ContainerArray,
ContainerMap,
ContainerSet,
Delegate,
MulticastDelegate,
}Variants§
Identity
No conversion needed (primitives).
IntCast
Integer type cast (e.g., u32 ↔ i32).
ObjectRef
Wrap in UObjectRef::from_raw / extract with .raw().
StringUtf8
String: UTF-8 ptr+len on FFI, String on Rust side.
EnumCast
Enum: i64 on FFI, enum type on Rust side.
StructOpaque
Struct: opaque pointer on FFI.
FName
FName: FNameHandle on FFI.
ContainerArray
TArray container property — returns UeArray
ContainerMap
TMap container property — returns UeMap<K, V> handle.
ContainerSet
TSet container property — returns UeSet
Delegate
Unicast delegate property.
MulticastDelegate
Multicast delegate property (inline or sparse).
Trait Implementations§
Source§impl Clone for ConversionKind
impl Clone for ConversionKind
Source§fn clone(&self) -> ConversionKind
fn clone(&self) -> ConversionKind
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 ConversionKind
impl Debug for ConversionKind
Source§impl PartialEq for ConversionKind
impl PartialEq for ConversionKind
impl Copy for ConversionKind
impl Eq for ConversionKind
impl StructuralPartialEq for ConversionKind
Auto Trait Implementations§
impl Freeze for ConversionKind
impl RefUnwindSafe for ConversionKind
impl Send for ConversionKind
impl Sync for ConversionKind
impl Unpin for ConversionKind
impl UnsafeUnpin for ConversionKind
impl UnwindSafe for ConversionKind
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> 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.