Trait Serializable

pub trait Serializable {
    const SERIALIZABLE_NAME: &'static str;
}
Expand description

Trait implemented by @serializable types.

Required Associated Constants§

const SERIALIZABLE_NAME: &'static str

The serialized name.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§