roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
use std::ptr::NonNull;

/// A placeholder type alias representing the type parameter of the extern "C" functions
type T = ();

/// A Roto clone function
pub type CloneFn = unsafe extern "C" fn(*mut T, *const T);

/// A Roto drop function
pub type DropFn = unsafe extern "C" fn(NonNull<T>);

/// Vtable of Roto values
///
/// This struct can be generated for every Roto value and contains the functions that
/// are available for all types. This type can be used to work with values of unknown
/// types.
///
/// If a registered function asks for this value, the compiler will ensure that the vtable
/// of the correct type is generated on demand. This should generally not be constructed
/// or modified.
#[derive(Clone, Debug)]
#[repr(C)]
pub struct VTable {
    size: usize,
    align: usize,

    /// Copies the value behind its second argument to the first
    ///
    /// It should only be `None` for `Copy` types.
    pub clone_fn: Option<CloneFn>,

    /// Drops the value behind its argument in place
    ///
    /// It should only be `None` for types that can be trivially dropped.
    pub drop_fn: Option<DropFn>,
}

impl VTable {
    pub fn new(
        size: usize,
        align: usize,
        clone_fn: Option<CloneFn>,
        drop_fn: Option<DropFn>,
    ) -> Self {
        Self {
            size,
            align,
            clone_fn,
            drop_fn,
        }
    }

    pub fn layout(&self) -> std::alloc::Layout {
        std::alloc::Layout::from_size_align(self.size, self.align).unwrap()
    }

    pub fn size(&self) -> usize {
        self.size
    }

    pub fn align(&self) -> usize {
        self.align
    }
}