pub trait From_0: Sized {
    // Required method
    fn from_0() -> Self;
}
Expand description

Constructor without arguments. Alias of Default.

Required Methods§

source

fn from_0() -> Self

Constructor without arguments.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<All> From_0 for All
where All: Default,