Sergey Galich

Results 5 comments of Sergey Galich

An example where named pipes support on Windows is falling behind: https://crates.io/crates/tokio-named-pipes is updated 2 years ago, it references mio 0.6 and tokio 0.1, mio 0.6 references winapi 0.2, while...

We are using this workaround until it's supported ```rust #[derive(Serialize, Deserialize, Debug)] pub enum FieldKind { date, email, menu, #[serde(skip_deserializing)] unknown, } fn deserialize_field_kind, { Ok(FieldKind::deserialize(deserializer).unwrap_or(FieldKind::Unknown)) } #[derive(Serialize, Deserialize, Debug)]...

Hey all, sorry if this was already answered somewhere. Do we have the list of official sources of address formats in different countries? We have a little over 200 countries...

The idea seems valid. Let's discuss specifics: 1. There are a few ways "save" can be triggered: form submit event, page navigation, perhaps more? We could leverage "form submit" as...

> 1. Currently our intent was to use this to test the actual autofill behaviour (which depends on the html), and the save method would be just used to populate...