Li Yu
Li Yu
``` import "google/protobuf/timestamp.proto"; ``` ^^ with additional import, the output include an empty `google.protobuf.rs` file what's the empty file for ?
when use tokio consumer, the message is always one record behind ``` let properties = ConnectionProperties::default().with_tokio_executor(); let conn = Connection::connect(&config.uri, properties).await?; let channel = conn.create_channel().await?; let consumer = channel .basic_consume(...);...
``` rocksdb v0.16.0 │ ├── libc v0.2.98 │ └── librocksdb-sys v6.20.3 │ └── libc v0.2.98 │ [build-dependencies] │ ├── bindgen v0.59.1 │ │ ├── bitflags v1.2.1 │ │ ├── cexpr...
**Version** 0.3.2 **Platform** MacOS **Description** I have query body defined as ``` #[derive(Deserialize, Serialize)] #[serde(untagged)] pub enum MyQuery { TypeA { foo_id: Uuid, bar_id: Uuid, buzz_id_maybe: Option, limit: i64, },...
Duplicate to https://github.com/microsoft/monaco-editor/discussions/4011 Anyone could shed some light how to let editor auto-complete based on table schema ?
Reproduce ``` (async () => { const drawChart = ` var container = document.getElementById('chart_div');const data = google.visualization.arrayToDataTable([['Country', 'Popularity'],['Germany', 200],['United States', 300],['Brazil', 400],['Canada', 500],['France', 600],['RU', 700] ]);var options={};var chart = new...