Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Rust tutorial for Pythonista
Search
Kentaro Matsumoto
March 10, 2022
Programming
2
1.2k
Rust tutorial for Pythonista
Start Python Club 20220310 Pythonistaに送るRust入門
Kentaro Matsumoto
March 10, 2022
Tweet
Share
More Decks by Kentaro Matsumoto
See All by Kentaro Matsumoto
Marpを使って登壇資料を作る
matsu7874
0
590
Generate a rust client code by OpenAPI Generator
matsu7874
0
340
ざっと理解するRust 2024 Edition
matsu7874
0
880
プリントデバッグを失敗させないテクニック
matsu7874
1
320
社外を巻き込んだ勉強会を定期開催するコツ
matsu7874
0
170
actix-webを使った開発のハマリポイントを避けたい
matsu7874
0
1k
our test strategy on actix-web app
matsu7874
0
1.5k
roadmap to rust 2024
matsu7874
0
2k
Mock testing with mockall
matsu7874
0
350
Other Decks in Programming
See All in Programming
Boost Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
300
お前もAI鬼にならないか?👹Bolt & Cursor & Supabase & Vercelで人間をやめるぞ、ジョジョー!👺
taishiyade
6
4k
第3回 Snowflake 中部ユーザ会- dbt × Snowflake ハンズオン
hoto17296
4
370
Amazon S3 TablesとAmazon S3 Metadataを触ってみた / 20250201-jawsug-tochigi-s3tables-s3metadata
kasacchiful
0
170
クリーンアーキテクチャから見る依存の向きの大切さ
shimabox
2
390
Formの複雑さに立ち向かう
bmthd
1
850
GAEログのコスト削減
mot_techtalk
0
120
Rubyで始める関数型ドメインモデリング
shogo_tksk
0
110
SwiftUIで単方向アーキテクチャを導入して得られた成果
takuyaosawa
0
270
なぜイベント駆動が必要なのか - CQRS/ESで解く複雑系システムの課題 -
j5ik2o
11
3.8k
技術を根付かせる / How to make technology take root
kubode
1
250
Honoとフロントエンドの 型安全性について
yodaka
7
1.2k
Featured
See All Featured
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Site-Speed That Sticks
csswizardry
4
380
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
It's Worth the Effort
3n
184
28k
Why Our Code Smells
bkeepers
PRO
336
57k
Mobile First: as difficult as doing things right
swwweet
223
9.3k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
Speed Design
sergeychernyshev
27
790
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Faster Mobile Websites
deanohume
306
31k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
Transcript
Rust tutorial for Pythonista @matsu7874 2022.3.10 Start Python Club みんなのPython勉強会#79
自己紹介 • 松本健太郎 (Kentaro MATSUMOTO) @matsu7874 • ソフトウェアエンジニア@フォルシア株式会社 ◦ Rustでインメモリデータベースを開発
◦ 技術広報・エンジニア採用 • 興味 ◦ Webアプリケーション ◦ 技術広報・エンジニア採用 ◦ 競技プログラミング • #stapy で感想をツイートしてね! 2
目次 • まずはRustを書いてみる。 • Rustってどんな言語 • 所有権(ownership) • ライフタイム(生存期間, lifetime)
• パターンマッチ • Cargo • Python と Rust を使う • 日本語のコミュニティ・資料など 3
Rust書いたことありますか? はい・いいえ 4
5 はじめてのRustプログラム 1. 「Rust Playground」と検索して https://play.rust-lang.org/ にアクセスしてください。 2. 下記のプログラムを入力して「RUN▶」を押してみましょう。
画面右側に「We love Python and Rust.」と表示されれば成功です。
Rust書いたことありますか? はい・いいえ 6
7 環境構築 1. https://rustup.rs/ にアクセスしてください。 2. 環境に応じてインストールの案内が表示されます a.
Linux系の場合は下記のコマンドを実行するだけでインストール完了です。
8 コンパイルして実行 (rustcの場合) 1. main.rs にプログラムを書く 2. rustc でコンパイルする
3. main.out を実行する
9 コンパイルして実行 (cargoの場合) 1. cargo new で新しいプロジェクトを作成 2. main.rs
にプログラムを書く 3. cargo runでコンパイル・実行
10 Rustってどんな言語 6年連続開発者から愛されている言語 1位 https://insights.stackoverflow.com/survey/2021#most-loved-dreaded-and-wanted-language-love-dread
11 Rustってどんな言語 高速で安全で生産性の高い言語 https://www.rust-lang.org/ja
12 Rustのパフォーマンス RustはC++と同程度に高速、Pythonの約30倍高速。 https://benchmarksgame-team.pages.debian.net/benchmarksgame/box-plot-summary-charts.html
13 Rustの信頼性 型システムと所有権によるコンパイル時の検証 • 安全ではないコードを無自覚にかけない仕組み
14 Rustの生産性 • ドキュメントの充実 • コンパイラのエラーメッセージが親切 • 標準インストールのパッケージマネージャ・ビルドツール・フォーマッタ
• ランゲージサーバ https://www.rust-lang.org/learn Python Rust package manager pip, poetry cargo language server Pylance rust-analyzer formatter autopep8, black rustfmt linter Pylint, flake8 clippy
15 所有権:Rustの信頼性の要 アイデア:所有権って概念を入れればGCを使わなくてもメモリ管理できるぞ!
16 所有権:変数とメモリ上の値の対応関係 メモリ上の値は唯一の所有者と呼ばれる変数を持つ 所有者である変数がスコープから外れた時、メモリを開放して良い x y vec![1,2,3]
x vec![1,2,3]
17 ライフタイム:参照が安全に使える範囲 毎回所有権が移動してはプログラミングしにくい。一時的に所有権を借りる(参照)ことができる。 この参照を安全に利用できる期間がライフタイム(生存期間)と呼ばれるもの。
18 しれっとヤバいコードを許さない
19 パターンマッチ: matchの腕 https://doc.rust-lang.org/rust-by-example/flow_control/match.html
20 パターンマッチ: 分割代入
21 パターンマッチ: if let は match の置き換え
22 パターンマッチ: while let は loop{match} の置き換え
23 Cargo: 標準のパッケージマネージャ • 標準だからみんなこれを使っている • よく使うコマンド ◦ cargo
new: パッケージを新しく作る ◦ cargo check: コンパイルせずに文法や依存関係のチェックを行う ◦ cargo build: コンパイルする ◦ cargo run: 実行する ◦ cargo run --release: リリースビルド(高速)で実行する ◦ cargo fmt: コード整形(標準搭載なので悩まなくて良い) ◦ cargo clippy: linter、Rustっぽい書き方も教えてくれる。
24 clippy https://rust-lang.github.io/rust-clippy/master/
25 Python と Rust を使う • 既存資産使えます。 ◦ PyO3という非常に簡単にバインディングを行えるライブラリがあります。
◦ https://github.com/PyO3/pyo3#using-rust-from-python • Pythonが強い領域でRustを使おうとしている人たちもいます。 ◦ 速度の高みを目指す:高速な単語分割器 Vaporetto の技術解説 ▪ https://tech.legalforce.co.jp/entry/2021/09/28/180844 ◦ 日本語形態素解析器 Sudachi のRust実装 ▪ https://github.com/WorksApplications/sudachi.rs
26 日本語のコミュニティ • rust-jp slack https://rust-jp.rs/ • イベント
◦ Shinjuku.rs https://forcia.connpass.com/ ◦ Rust LT https://rust.connpass.com/ ◦ Rustオンラインもくもく会 https://rust-online.connpass.com/ ◦ Rust.Tokyo 年1回のカンファレンス https://rust.tokyo/
27 日本語のオンラインドキュメント • Rustの日本語ドキュメント https://doc.rust-jp.rs/ • とほほのRust入門 https://www.tohoho-web.com/ex/rust.html
28 日本語のおすすめ書籍 • 実践Rust入門[言語仕様から開発手法まで] (2019/5/8) ◦ それまで雰囲気で書いていた部分が理解できました。 •
実践Rustプログラミング入門 (2020/8/22) ◦ いろいろな題材をRustで書いてみる本です。共著者として参加。 • コンセプトから理解するRust (2022/2/12) ◦ 比較的薄く、メモリレイアウトが理解しやすい。
Rust も いいぞ! @matsu7874 29