1use static_assertions::assert_obj_safe; 2 3assert_obj_safe!(Union); 4 5/// A trait for representing a union 6/// Don't implement this trait manually, use the `union` macro instead 7pub trait Union {}