Closed miraclx closed 1 year ago
Resolves #116.
ApiKey::new no longer requires valid UUID input, this, in turn, expands the range of possible inputs to include byte arrays [u8; N] as well as byte slices &[u8]. Replacing ApiKey::as_str with ApiKey::to_str which now returns a Result.
ApiKey::new
[u8; N]
&[u8]
ApiKey::as_str
ApiKey::to_str
Result
Resolves #116.
ApiKey::new
no longer requires valid UUID input, this, in turn, expands the range of possible inputs to include byte arrays[u8; N]
as well as byte slices&[u8]
. ReplacingApiKey::as_str
withApiKey::to_str
which now returns aResult
.