Trait Initializable

Source
pub trait Initializable {
    // Required method
    fn is_initialized(&self) -> bool;
}
Expand description

Trait to represent a type that can be initialized.

Required Methods§

Source

fn is_initialized(&self) -> bool

Return true if the object is initialized.

Implementors§