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
230
Generate a rust client code by OpenAPI Generator
matsu7874
0
230
ざっと理解するRust 2024 Edition
matsu7874
0
420
プリントデバッグを失敗させないテクニック
matsu7874
1
260
社外を巻き込んだ勉強会を定期開催するコツ
matsu7874
0
150
actix-webを使った開発のハマリポイントを避けたい
matsu7874
0
960
our test strategy on actix-web app
matsu7874
0
1.4k
roadmap to rust 2024
matsu7874
0
1.9k
Mock testing with mockall
matsu7874
0
320
Other Decks in Programming
See All in Programming
From Subtype Polymorphism To Typeclass-based Ad hoc Polymorphism- An Example
philipschwarz
PRO
0
160
弊社の「意識チョット低いアーキテクチャ」10選
texmeijin
5
23k
Golang と Erlang
taiyow
8
1.9k
讓數據說話:用 Python、Prometheus 和 Grafana 講故事
eddie
0
350
cXML という電子商取引の トランザクションを支える プロトコルと向きあっている話
phigasui
3
2.2k
VR HMDとしてのVision Pro+ゲーム開発について
yasei_no_otoko
0
100
Snowflake x dbtで作るセキュアでアジャイルなデータ基盤
tsoshiro
2
420
[PyCon Korea 2024 Keynote] 커뮤니티와 파이썬, 그리고 우리
beomi
0
110
Generative AI Use Cases JP (略称:GenU)奮闘記
hideg
0
150
Outline View in SwiftUI
1024jp
1
100
色々なIaCツールを実際に触って比較してみる
iriikeita
0
260
シールドクラスをはじめよう / Getting Started with Sealed Classes
mackey0225
3
390
Featured
See All Featured
Making the Leap to Tech Lead
cromwellryan
132
8.9k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
3
370
RailsConf 2023
tenderlove
29
880
How GitHub (no longer) Works
holman
311
140k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
43
6.6k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.6k
GitHub's CSS Performance
jonrohan
1030
460k
Practical Orchestrator
shlominoach
186
10k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
22k
How to train your dragon (web standard)
notwaldorf
88
5.7k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
355
29k
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