Skip to main content

PwdGrpString

Trait 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>.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl PwdGrpString for Box<[u8]>

Source§

impl PwdGrpString for Box<str>

Source§

impl PwdGrpString for String

Source§

impl PwdGrpString for Vec<u8>

Implementors§