pub trait ConstDataStruct {
    const DEFAULT: Self;
}
Expand description

The macro’s const option will implement this trait for the structure.

Required Associated Constants§

source

const DEFAULT: Self

The constant default value of the structure.

Object Safety§

This trait is not object safe.

Implementors§