Skip to content

Instantly share code, notes, and snippets.

@Lashi0812
Lashi0812 / feed.xml
Last active February 18, 2026 04:04
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>TNPSC Current Affairs</title>
<link>https://www.tnpscthervupettagam.com/currentaffairs/</link>
<description>Daily TNPSC Current Affairs from Thervupettagam</description>
<language>en-us</language>
<lastBuildDate>Wed, 18 Feb 2026 04:03:07 GMT</lastBuildDate>
<pubDate>Wed, 18 Feb 2026 00:00:00 GMT</pubDate>
<item>
@Lashi0812
Lashi0812 / rust_errors.md
Last active November 7, 2024 16:47
Various rust error i have encounterd

E0106 - Lifetime annotation

Rust error E0106 is associated with lifetime annotations and occurs when a function or struct requires a lifetime parameter, but it isn't explicitly specified. The compiler encounters this error when it cannot determine the lifetime relationships between references.

Example of Error E0106

struct MyStruct<T> {
    value: &T, // Error E0106
}