WENPIN1

Results 7 comments of WENPIN1

How about 'prost-reflect' craft ? https://github.com/andrewhickman/prost-reflect https://docs.rs/prost-reflect/0.10.2/prost_reflect/trait.ReflectMessage.html

My study till now; $brew install sdl2 ### ffmpeg need sdl2 on MAC .cargo/config.toml ``` [env] FFMPEG_PKG_CONFIG_PATH = "..../tmp/ffmpeg_build/lib/pkgconfig" RUST_BACKTRACE = "full" FFMPEG_LIBS_DIR = "..../tmp/ffmpeg_build/lib/" FFMPEG_INCLUDE_DIR = "..../tmp/ffmpeg_build/include/" [build] target...

However, a similar function (percentile, quantile) on SQL query might be useful and straightforward. Because many TSDB have this function builtin. Thank you!

Thank you for your handsome efforts very much!

Why not split the host:port into host string for the convenience ? https://github.com/vicanso/pingap/blob/main/src/util/mod.rs#L208) ``` pub fn get_host(header: &RequestHeader) -> Option { if let Some(host) = header.headers.get("Host") { return host.to_str().unwrap_or_default().split(':').next(); }...

Just a sharing ! Thank you! Please test as follows; #[test] fn test1() -> Result { unsafe { ffi::avdevice_register_all(); // ffi::av_log_set_level(ffi::AV_LOG_TRACE as i32); } let name = cstr!("lavfi"); let filter_ref...

Hi all, Is this derive macro with utoipa 5.4 chrono feature ? #[schema(value_type = String, format="date-time", example = "2023-10-11T10:00:00Z")] pub updated_at: DateTime, Thank you very much ! -WENPIN