Crate inline_dyn

Source
Expand description

InlineDyn

Modules§

allocnightly and alloc
any
convert
error
fmt
future
hash
io
iter
ops

Macros§

InlineDynFn
InlineDynFnMut
dyn_star
A convenience macro that allows for using similar syntax to the proposed dyn* Trait feature.
inline_dyn
Constructs a new InlineDyn containing the given value.
inline_dyn_boxalloc
inline_dyn_try

Structs§

Align
A zero-sized-type aligned to N. Compound types containing a field Align<N> with have an alignment of at least N.
InlineDyn
A container type that stores a dynamically-sized type (e.g., a trait object) inline within the container.
IntoIter

Constants§

DEFAULT_SIZE
A constant corresponding to the default size and alignment of the internal storage of an InlineDyn.

Traits§

Alignment
Implemented for all Align<N> where N is a valid alignment (i.e., a power of two less-than-or-equal to 228).
DynClone
A trait for cloning trait objects dynamically.