pub type SecretSlice<S> = SecretBox<[S]>;Expand description
Secret slice type.
This is a type alias for [SecretBox<[S]>] which supports some helpful trait impls.
Notably it has a From<Vec<S>> impl which is the preferred method for construction.
Aliased Type§
pub struct SecretSlice<S> { /* private fields */ }