Trait pwd_grp::PwdGrpString

source ·
pub trait PwdGrpString: SealedString + Deref { }
Expand description

Strings that can we can work with

Implemented for String, which is the usual case. Box<str> is also useable.

If you want to work with non-unicode data use Box<[u8]> or Vec<u8>.

Implementations on Foreign Types§

source§

impl PwdGrpString for String

source§

impl PwdGrpString for Vec<u8>

source§

impl PwdGrpString for Box<str>

source§

impl PwdGrpString for Box<[u8]>

Implementors§