Skip to main content

FfiRawPointer

Trait FfiRawPointer 

pub trait FfiRawPointer: Copy + Sealed { }
Expand description

Trait for raw pointers that can be passed over the Godot FFI boundary as i64 addresses.

This trait is implemented for *const T and *mut T, and used as a bound inside RawPtr.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

§

impl<T> FfiRawPointer for *const T

§

impl<T> FfiRawPointer for *mut T

Implementors§