Alessandro
Alessandro
Closes #226
Currently, comparisons between `DnsContent` instances require explicit matching of the enum variants. ```rust let dns1: DnsContent = ...; let dns2: DnsContent = ...; let is_same_record: bool = match (dns1, dns2)...
# Summary Adds the `Invoice:void` method closing #517 ### Checklist - [X] ran `cargo make fmt` - [X] using [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to hightlight user-facing fixes and features
### Is your feature request related to a problem? Please describe. The `Invoice` object has some useful `ext` methods such as: - `Invoice::upcoming` - `Invoice:finalize` - `Invoice::pay` - `Invoice::delete` **Invoices...
## What Currently, `wasp-hls` fetches segments only from HTTP (as per HLS spec). My proposal is to make the WASM module extensible, allowing different sources to gather the segments from....
Gave some love to the `Referer` header while respecting RFC7231 spec. ### Usage ```rust let referer = Referer::from_str("https://example.com:8443/api/users?page=1").unwrap(); assert_eq!(referer.scheme(), Some("https")); assert_eq!(referer.hostname(), Some("example.com")); assert_eq!(referer.path(), "/api/users"); assert_eq!(referer.query(), Some("page=1")); ```