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 Stack vs Heap usage
Search
Deepu K Sasidharan
March 29, 2020
3
64k
Rust Stack vs Heap usage
Deepu K Sasidharan
March 29, 2020
Tweet
Share
More Decks by Deepu K Sasidharan
See All by Deepu K Sasidharan
Delay the AI Overlords: How OAuth and OpenFGA Can Keep Your AI Agents from Going Rogue
deepu105
0
27
Delay the AI Overlords: How OAuth and OpenFGA Can Keep Your AI Agents from Going Rogue
deepu105
0
36
Auth for MCP: Secure MCP servers using OAuth
deepu105
0
37
Auth0 for AI Agents
deepu105
1
88
Securing the Future of AI: Authorization Strategies for RAG Systems using LangChain4J and OpenFGA
deepu105
0
110
Demystifying OAuth and OIDC: JFokus
deepu105
1
170
Mastering Kubernetes Security from Containers to Cluster Fortresses
deepu105
1
100
Go containerless on Kubernetes
deepu105
1
140
A Passwordless Future! Passkeys for Java Developers
deepu105
0
190
Featured
See All Featured
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Chasing Engaging Ingredients in Design
codingconduct
0
130
Digital Ethics as a Driver of Design Innovation
axbom
PRO
1
200
Done Done
chrislema
186
16k
Darren the Foodie - Storyboard
khoart
PRO
3
2.6k
ラッコキーワード サービス紹介資料
rakko
1
2.5M
Measuring & Analyzing Core Web Vitals
bluesmoon
9
760
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
270
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Facilitating Awesome Meetings
lara
57
6.8k
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
120
Transcript
Rust Memory usage Heap Thread stack main frame
Rust Memory usage Heap Thread stack main frame john Employee:new
name salary 5000 sales 5 bonus 0 Box<“John”>
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”>
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 0
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 0 get_bonus_percentage salary
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 0 get_bonus_percentage salary percentage 500
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 0 get_bonus_percentage salary percentage 500 return 500
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 500
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 500 bonus 2500
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 0 Box<“John”> find_employee_bonus salary no_of_sales 5 bonus_percentage 500 bonus 2500 return 2500
Rust Memory usage Heap Thread stack main frame john name
salary 5000 sales 5 bonus 2500 Box<“John”>
Rust Memory usage Heap Thread stack