[][src]Trait rand_pwd::ToRandPwd

pub trait ToRandPwd {
    fn to_randpwd(&self) -> Option<RandPwd>;
}

A generic trait for converting a value to a RandPwd.

Required methods

fn to_randpwd(&self) -> Option<RandPwd>

Converts the value of self to a RandPwd.

Loading content...

Implementors

impl<T: AsRef<str>> ToRandPwd for T[src]

Loading content...