私にはVec<i8>があります。&strと読む必要があります。今私はそれを行うための2つの方法を見つけました。両方とも私に不幸を残します。 // Quite complex for something this simple
str::from_utf8(buffer.into_iter().map(|c| c as u8).collect::<Vec<u8>>().as_slice())
2次元のスライスを使用して複数の線を表現していますが、線の1つに追加すると非常に奇妙な動作をします。私はこのプログラムの出力は Before:
first line
second line
third line
After:
first line-inserted text-
second line
third line
ことを期待する package main
impor