Shiftr Tech SAS

Results 7 issues of Shiftr Tech SAS

Hi, there is a way to implement ```serialize_with``` when serialize a field on my custom struct

Hi, when i use this: ```rust use serde::{Deserialize, Serialize}; use calamine::{RangeDeserializerBuilder, Reader, Xlsx}; #[derive(Serialize, Deserialize, Debug)] struct RawExcelRow { metric: String, #[serde(deserialize_with = "de_opt_f64")] value: Option, } // Convert value...

When i use the modify PDF document example: ```rust let mut doc = Document::load("example.pdf")?; doc.version = "1.4".to_string(); doc.replace_text(1, "Hello World!", "Modified text!"); doc.save("modified.pdf")?; ``` It doesn't works, i get this...

Hi, is there a way to set "useNativeDriver" on notification animation, thanks.

Hi, can you please show me an example of using `react-native-in-app-notification` with `react-redux`. On your docs says: `export default withInAppNotification(MyApp);` But i need to use it on my `Routes` file...

Hi, there is a way to work with actix-web?

Hey, can i iterate over struct fields with this library, can you please show me a basic example, my current struct has like 40 fields all are of type `Option`...