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", so this trait is not object safe.