pub trait ConceptSuggested: Concept {
    // Required method
    fn suggested() -> Self;
}
Expand description

Provides a helper method to get an instance of this concept with all of the fields filled in with suggested values.

This trait is only implemented if all fields in a concept have a suggested value.

Required Methods§

source

fn suggested() -> Self

Returns this concept with all of its fields filled in with suggested values.

The optional field, if present, will be defaulted/have all of its fields be None.

Object Safety§

This trait is not object safe.

Implementors§