Group use of std under one root.

This commit is contained in:
Stephen Chung
2020-03-10 10:07:44 +08:00
parent bae9946291
commit feaad4e0da
4 changed files with 24 additions and 22 deletions

View File

@@ -1,7 +1,9 @@
//! Helper module which defines the `Any` trait to to allow dynamic value handling.
use std::any::{type_name, TypeId};
use std::fmt;
use std::{
any::{type_name, TypeId},
fmt,
};
/// An raw value of any type.
pub type Variant = dyn Any;