Trait variadic_from::From_0

source ·
pub trait From_0
where Self: 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,