1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
//! An implementation for a `&dyn [Trait]`-like type, inspired by a [Reddit thread](https://www.reddit.com/r/rust/comments/14i08gz/dyn_slices).
//!
//! Indexing into a dyn slice yields a dyn object.
//!
//! # Examples
//!
//! ```
#![doc = include_str!("../examples/display.rs")]
//! ```
//!
#, "/source/examples/).")]
//!
//! # Standard new dyn slice functions
//!
//! There are some pre-made new functions for common traits in [`standard`]
#![feature(ptr_metadata, pointer_byte_offsets)]
#![cfg_attr(doc, feature(doc_cfg))]
#![warn(
clippy::all,
clippy::pedantic,
clippy::nursery,
clippy::perf,
clippy::cargo,
clippy::alloc_instead_of_core,
clippy::std_instead_of_alloc,
clippy::std_instead_of_core,
clippy::get_unwrap,
clippy::panic_in_result_fn,
clippy::pub_without_shorthand,
clippy::redundant_type_annotations,
clippy::todo
)]
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(test)]
mod compile_tests;
mod dyn_slice;
mod dyn_slice_mut;
mod iter;
mod iter_mut;
/// Dyn slice `new` and `new_mut` definitions for some common traits
pub mod standard;
pub use dyn_slice::*;
pub use dyn_slice_mut::*;
pub use iter::*;
pub use iter_mut::*;
#[macro_export]
/// Declares `new` and `new_mut` functions for a dyn slice
///
/// # Syntax
///
/// Simple trait:
/// `declare_new_fn!(Trait, new_module_name);`
///
/// Trait with a given generic:
/// `declare_new_fn!(Trait:<Type>, new_module_name);`
///
/// Trait with a generic:
/// `declare_new_fn!(<T>, Trait:<T>, new_module_name);`
///
/// A visibility qualifier can be added before the module name.
/// Attributes can also be added before the other arguments.
///
/// # Examples
///
/// Display:
/// ```
/// # #![feature(ptr_metadata)]
/// # use dyn_slice::declare_new_fn;
/// declare_new_fn!(std::fmt::Display, display_dyn_slice);
/// use display_dyn_slice::{new, new_mut};
/// ```
///
/// Generics:
/// ```
/// # #![feature(ptr_metadata)]
/// # mod test {
/// # use dyn_slice::declare_new_fn;
///
/// pub trait A<B, C> {
/// fn b(&self) -> B;
/// fn c(&self) -> C;
/// }
///
/// declare_new_fn!(A:<u8, f32>, given_generic_dyn_slice);
///
/// declare_new_fn!(<C>, A:<u8, C>, half_given_generic_dyn_slice);
///
/// declare_new_fn!(<B, C>, A:<B, C>, generic_dyn_slice);
/// # }
/// ```
macro_rules! declare_new_fn {
(
$(#[ $meta:meta ])*
$(< $( $gen:ident ),* >,)?
$tr:path $( :<$( $trgen:ident ),*> )?,
$vis:vis $name:ident $(,)?
) => {
#[doc = concat!("new functions for `&dyn [", stringify!($tr), "]`")]
$(#[ $meta ])*
$vis mod $name {
#[allow(unused_imports)]
use super::*;
use $tr as Trait;
#[allow(unused)]
#[must_use]
/// Create a dyn slice from a slice
pub fn new<'a, $($( $gen ,)*)? DynSliceFromType: Trait $(< $($trgen),* >)?>(value: &'a [DynSliceFromType]) -> $crate::DynSlice<dyn Trait $(< $($trgen),* >)?>
where
dyn Trait $(< $($trgen),* >)?: core::ptr::Pointee<Metadata = core::ptr::DynMetadata<dyn Trait $(< $($trgen),* >)?>>,
$($(
$gen: 'static
),*)?
{
use core::{
mem::transmute,
ptr::{metadata, null}
};
unsafe {
// Get the dyn metadata from the first element of value
// If value is empty, the metadata should never be accessed, so set it to a null pointer
let vtable_ptr = value.get(0).map_or(
null::<()>(),
|example| {
transmute(metadata(transmute::<
_,
&'static dyn Trait $(< $($trgen),* >)?
>(example as &dyn Trait $(< $($trgen),* >)?)))
}
);
$crate::DynSlice::with_vtable_ptr(value, vtable_ptr)
}
}
#[allow(unused)]
#[must_use]
/// Create a mutable dyn slice from a mutable slice
pub fn new_mut<'a, $($( $gen ,)*)? DynSliceFromType: Trait $(< $($trgen),* >)?>(value: &'a mut [DynSliceFromType]) -> $crate::DynSliceMut<dyn Trait $(< $($trgen),* >)?>
where
dyn Trait $(< $($trgen),* >)?: core::ptr::Pointee<Metadata = core::ptr::DynMetadata<dyn Trait $(< $($trgen),* >)?>>,
$($(
$gen: 'static
),*)?
{
use core::{
mem::transmute,
ptr::{metadata, null}
};
unsafe {
// Get the dyn metadata from the first element of value
// If value is empty, the metadata should never be accessed, so set it to a null pointer
let vtable_ptr = value.get(0).map_or(
null::<()>(),
|example| {
transmute(metadata(transmute::<
_,
&'static dyn Trait $(< $($trgen),* >)?
>(example as &dyn Trait $(< $($trgen),* >)?)))
}
);
$crate::DynSliceMut::with_vtable_ptr(value, vtable_ptr)
}
}
}
};
}