Rust Search

Find the best content on Rust, curated by the community; a search engine for Rustaceans.
 This Week in Rust - Issue 445
42:06
Rustacean Station rustacean-station.org
...And the test harness actually checks to see whether or not standard error matches the standard error file and so forth. And so if you want to see how that happens from end to end to improve an error message, um, this is a really useful PR to see, uh...
Podcast 2022-06-16 42:06
Traceability
29:33
Self-Directed Research sdr-podcast.com
...how much of my code has docs? Or how much of my docs match my code? Or what is my test coverage? Not necessarily like what is my code coverage, but like how many places did I say: hey, I'm testing this function or I'm testing this module...
Podcast 2025-07-09 29:33
Tweede Golf with Folkert de Vries
1:13:30
Rust in Production corrode.dev
...what we actually do is sort of speed up and slow down the clock slightly to sort of get its frequency to match the real frequency. And this is tricky because the frequency actually depends on like the temperature in the room, for instance...
Podcast 2024-02-08 1:13:30
Email protocols with Mauro De Gennaro from Stalwart Labs
1:42:51
netstack.fm api.riverside.com
...Actually, some email clients, when you have, like, a rule editor, a mail filter editor with a UI, for example, it says if from matches up, then do this or do that. Many mail clients, well, the only way they have is they want, if they want to implement server...
Podcast 2026-02-10 1:42:51
 PyO3 with David Hewitt
1:02:00
Rustacean Station rustacean-station.org
...sort of hooking into python's import mechanism when you ask python to import a file it can look at native compiled code that matches a name it's expecting and try and import native code from that and it will run it where python's calling you but you...
Podcast 2023-05-19 1:02:00
Tokio with Carl Lerche (Ep 5 Remastered)
1:35:34
netstack.fm api.riverside.com
...So kind of assert struct, which was ⁓ a development kind of like a testing tool, pattern matching, an assertion for... ⁓ complex structures, of like imagine like if you want to do really fancy match statements pass of what Rust lets you do for tests. That's what assert struct is...
Podcast 2026-04-09 1:35:34
 PubNub with Stephen Blum
32:48
Rustacean Station rustacean-station.org
...can have a bunch of if statements and string checking and tag checking to say i only want data from this channel if it matches greater than 90 on this data point or if this value is greater than that value and it has this tag so we have that...
Podcast 2024-10-13 32:48
What good is partial understanding?
34:13
Self-Directed Research sdr-podcast.com
...So in Rust, you're probably having a match statement that's exhaustive and you're going to handle this, or you're going to have to unwrap an option or whatever. So Rust, I think at least surfaces this concern. But if you just slap a question mark after...
Podcast 2024-10-30 34:13
 Asynchronous Programming in Rust with Carl Fredrik Samson
50:18
Rustacean Station rustacean-station.org
...I didn't even think about mixing and matching, because like you said, I always think about them coming as some kind of cohesive pair that can never be split up, right? And now that you mentioned this, okay, it does make sense that they would be very closely linked...
Podcast 2024-03-17 50:18
 Ockam with Mrinal Wadhwa
44:29
Rustacean Station rustacean-station.org
...Which are those? I mean, I would figure that that'd actually be at a protocol layer because supposedly, you know, Erlang is very good about binary manipulation and pattern matching, right? Yeah. It's interesting you brought that up. Erlang is really good at binary manipulation. And I think...
Podcast 2022-09-23 44:29
 Glidesort with Orson Peters
1:14:40
Rustacean Station rustacean-station.org
...As long as you stay under one gigabyte, it matches the current Rust standard library behavior where it's n divided by two. And if it's more than a gigabyte, it will actively try to reduce its memory usage by switching to a strategy that uses n divided by...
Podcast 2023-05-05 1:14:40
 Pitching Rust to decision-makers, with Joel Marcey
41:05
Rustacean Station rustacean-station.org
...I haven't fully seen the results of that survey yet, but I, you know, I'm really interested to kind of find out what people said to that and see if they kind of match my thinking as well. So once, you know, once we can find results from...
Podcast 2023-09-11 41:05
RustRover with Orhun Parmaksız
52:47
Rust in Production corrode.dev
...Program Structure Interface. Then we take that and we build a cleaned up, type checked version of your program, that matches how Rust understands the code. And this is called typed high-level intermediate representation. And after that, MIR comes, which is...
Podcast 2026-07-30 52:47
Hazel Weakly: Creating tech tools for humans
0:00
Compose timclicks.dev
...And also to the, we want that mental model of how things work, to match reality as closely as possible. If you use a variable inside a loop, it's And then use it outside the loop, you know it's fine. And, up until, I want to say, 2018...
Podcast 2024-09-21 0:00
Teaching and Learning Rust with ‪Tim McNamara - RustShip #10
2:04:38
RustShip - a RustLang podcast podcasters.spotify.com
...Uh, also, what says also the static data type and syntax like match and others teach engineers to be accurate with dealing with data and make sure data flow in the system is on the right way. Yes. For example, yeah, the, the exhaustive match, uh, I really like a...
Podcast 2024-12-14 2:04:38
A different serde
40:33
Self-Directed Research sdr-podcast.com
...You have to match on the discriminant of the enum and then know if it's a string, if it's a number, if it's whatever. Also, it's inefficient for a bunch of other reasons, but the reason serde has methods per type is that it can inline...
Podcast 2024-11-27 40:33
 Yew with Julius Lungys
47:13
Rustacean Station rustacean-station.org
...Yeah, I thought that there's, I don't know, I know in JavaScript, there's a way that you can, it's not a decompile, but when you compile it, you can compile some kind of existing file that can kind of go side by side and match up...
Podcast 2022-01-07 47:13
 Adopting Rust: present and future of the Rust web ecosystem, with Luca Palmieri
47:03
Rustacean Station rustacean-station.org
...A lot of techniques that don't match up. And now you do testing and how you do things. So all in all, I've actually found it, like, not too different. Obviously, the scale is completely different, but that's different about it. Different axis. So you mentioned before...
Podcast 2023-08-12 47:03
 Zed with Antonio Scandurra
45:29
Rustacean Station rustacean-station.org
...videos presented by one of the other co-founders he was talking about i think somewhat like the redraw rate on your monitor should match the redraw rate on your editor and i think wow that's could be this could be quite tough yeah i mean are you doing...
Podcast 2023-03-10 45:29
 Actix Web with Rob Ede
42:49
Rustacean Station rustacean-station.org
...I'm surprised you just don't match. Like, we just don't have like wrappers around them. We just don't have interfaces that abstract away from some of this. That's just like, it's overhead for the maintainers, right? Especially for some of these things. Like, we...
Podcast 2022-05-20 42:49
"Now macros are fine, I mean we use them for implementing internals and you know if you have something that \[...\] needs to be implemented for lots an..."

Search tips

Type anything to search across articles, videos (including conference talks), podcasts, research, crates, and Rust API documentation. These operators give you finer control — click an example to try it.

Find pages containing all your words. Pages where the words appear together rank higher.
Quote part of your query to keep those words together as an exact phrase within a larger search.
Wrap the whole query in quotes for a verbatim search that matches text exactly, punctuation and all — perfect for Rust syntax. Needs at least 3 characters.
Limit results to a single site. Works on its own () too. One site: per search.

Use the tabs and filters above the results to narrow by content type, publication year, and sort order.