diff options
author | Andreas Hindborg <a.hindborg@kernel.org> | 2025-02-27 15:38:09 +0100 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2025-03-20 21:44:47 +0100 |
commit | d2e3f7987d03c6abeeb8890540569c87999bdcc1 (patch) | |
tree | 3af6172cd19a5cd8afa2f3dbc4f8113bfe9d262c /rust | |
parent | 50a5ff0a95a54d5a710f1f2547ecf8af12b6b83a (diff) |
rust: str: implement `AsRef<BStr>` for `[u8]` and `BStr`
Implement `AsRef<BStr>` for `[u8]` and `BStr` so these can be used
interchangeably for operations on `BStr`.
Reviewed-by: Gary Guo <gary@garyguo.net>
Tested-by: Daniel Almeida <daniel.almeida@collabora.com>
Reviewed-by: Daniel Almeida <daniel.almeida@collabora.com>
Signed-off-by: Andreas Hindborg <a.hindborg@kernel.org>
Reviewed-by: Fiona Behrens <me@kloenk.dev>
Tested-by: Daniel Gomez <da.gomez@samsung.com>
Link: https://lore.kernel.org/r/20250227-module-params-v3-v8-3-ceeee85d9347@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust')
-rw-r--r-- | rust/kernel/str.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rust/kernel/str.rs b/rust/kernel/str.rs index ba6b1a5c4f99..c6bd2c69543d 100644 --- a/rust/kernel/str.rs +++ b/rust/kernel/str.rs @@ -125,6 +125,18 @@ where } } +impl AsRef<BStr> for [u8] { + fn as_ref(&self) -> &BStr { + BStr::from_bytes(self) + } +} + +impl AsRef<BStr> for BStr { + fn as_ref(&self) -> &BStr { + self + } +} + /// Creates a new [`BStr`] from a string literal. /// /// `b_str!` converts the supplied string literal to byte string, so non-ASCII |