pub trait DataStruct {
    // Required method
    fn data_default() -> Self;
}
Expand description

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

Required Methods§

source

fn data_default() -> Self

Returns the default value of the structure.

Object Safety§

This trait is not object safe.

Implementors§