TAKOYAKING’s blog 一覧

TAKOYAKING’s blog

たこ焼き系

2020-05-27から1日間の記事一覧

Rust: temporary value is freed at the end of this stat

現象 struct Note { name:String, } let name = note.name.trim(); println!("{}", name); こういうコードを書いたら以下のようなエラーがでた。 Rust: temporary value is freed at the end of this stat 原因 rust - Temporary value is freed at the end …