pub trait IsValidLength {
    // Required method
    fn is_valid_length(&self) -> bool;
}
Expand description

Checks that the current number is > 0.

Required Methods§

source

fn is_valid_length(&self) -> bool

Checks that the current number is > 0.

Implementations on Foreign Types§

source§

impl IsValidLength for f32

source§

impl IsValidLength for f64

Implementors§