BoxAnySync

Type Alias BoxAnySync 

Source
pub type BoxAnySync = Box<dyn Any + Sync>;
Expand description

A type alias for a boxed Any + Sync trait object.

This represents a dynamically dispatched trait object that owns its data and is safe to share across threads.

Aliased Typeยง

pub struct BoxAnySync(/* private fields */);