1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 10:05:39 +02:00

Chromium: fix path of String::from_utf16 (#1541)

This commit is contained in:
Lukasz Anforowicz 2023-12-01 08:21:20 +00:00 committed by GitHub
parent 97e130271d
commit 02d0b5d01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ Students will likely need some hints here. Hints include:
UTF8, and will probably decide that it's better to do the conversion
on the C++ side using `base::UTF16ToUTF8` and back again.
* If students decide to do the conversion on the Rust side, they'll need to
consider [`std::string::from_utf16`][1], consider error handling, and
consider [`String::from_utf16`][1], consider error handling, and
consider which [cxx supported types can transfer a lot of u16s][2].
* Students may design the C++/Rust boundary in several different ways,
e.g. taking and returning strings by value, or taking a mutable reference