Linken Quy Dinh
Linken Quy Dinh
serde
Reference: https://github.com/Sayan751/email-address-parser/issues/1 Can this be implemented? Current workaround: ```rust use core::fmt; use email_address_parser::EmailAddress; use serde::{Deserializer, Serialize, Serializer}; use std::fmt::Debug; #[derive(Debug, Clone)] pub struct EmailAddressWrapped(pub EmailAddress); impl fmt::Display for EmailAddressWrapped {...
Latest published is 0.3.1
```rust #[derive(Educe, Debug)] #[educe(Default(bound(T: Default), expression = Self { data: vec![1, 2, 3, 4, 5] }))] struct Dummy { data: T, } ``` ```shell 39 | #[educe(Default(bound(T: Default), expression =...
https://docs.rs/fjall/latest/fjall/struct.WriteTransaction.html It's hard to use across threads in async context, internally it's using a Mutex, is it not possible to implement the Send bound? It makes it easier to wrap...
To not crash the app by eating all memory. Optional ability to limit by total size or number of keys. Probably LRU eviction, even allow user to provide callback.
So the user can sync data to fs/remote, preferably run async code. Real-time subscription with filters for insert, update and delete operations.
Can this be added for all containers? Remove all items from all containers, return them `Option` or `Option`. Scanning and copy key to remove using 2 loops is pain.
https://github.com/beckend/event-listener/tree/event_listener_bug `cargo run --release --example mutex` https://github.com/beckend/event-listener/blob/event_listener_bug/examples/mutex.rs#L127-L151 It dead locks.