[go: up one dir, main page]

rkyv 0.8.0-rc.2

Zero-copy deserialization framework for Rust
Documentation
//! Utilities for common operations.

#[cfg(feature = "alloc")]
mod alloc;
mod inline_vec;
mod ser_vec;

use core::ops::{Deref, DerefMut};

#[doc(inline)]
#[cfg(feature = "alloc")]
pub use self::alloc::*;
#[doc(inline)]
pub use self::{inline_vec::InlineVec, ser_vec::SerVec};

/// A wrapper which aligns its inner value to 16 bytes.
#[derive(Clone, Copy, Debug)]
#[repr(C, align(16))]
pub struct Align<T>(
    /// The inner value.
    pub T,
);

impl<T> Deref for Align<T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<T> DerefMut for Align<T> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}