Sealed

Trait Sealed 

Source
pub trait Sealed: 'static {
    // Required method
    fn type_id(&self) -> TypeId;
}

Required Methods§

Source

fn type_id(&self) -> TypeId

Implementors§

Source§

impl<T: 'static> Sealed for TypeIdWrapper<T>