作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Rust noob here,我一直在尝试从 grpc 调用中解压缩此枚举(尝试访问 Vec<u8>
字节),但到目前为止我不明白如何访问基础数据。
这是原型(prototype):
message PublishRequest {
string topic = 1;
oneof optional_content {
bytes content = 2;
}
}
message KafkaResponse {
bool success = 1;
oneof optional_content {
string content = 2;
}
}
service KafkaStream {
rpc Subscribe(stream PublishRequest) returns (stream KafkaResponse) {};
}
Rust 代码(我试图达到
PublishRequest.optional_content.content
):
let output = async_stream::try_stream! {
while let Some(publication) = stream.next().await {
let message = publication?;
let topic = message.topic.clone();
if consumer_created_flag == false {
stream_topic = topic.clone();
consumer = Some(create_kafka_consumer(topic));
producer = Some(create_kafka_producer());
consumer_created_flag = true;
}
let content : Vec<u8> = match message.optional_content.clone() {
Some(message_content) => vec![], //trying to access content here instead
None =>vec![],
};
let reply = bridge::KafkaResponse {
content: format!("Hello {}!", "world"),
};
yield reply.clone();
}
};
message.optional_content
是
std::option::Option<bridge::publish_request::OptionalContent>
类型
pub mod publish_request {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum OptionalContent {
#[prost(bytes, tag = "2")]
Content(::prost::alloc::vec::Vec<u8>),
}
}
最佳答案
您可以匹配 整型 :
let content : Vec<u8> = match message.optional_content.clone() {
Some(OptionalContent::Content(message_content)) => message_content,
None =>vec![],
};
您可以查看
documentation 中的示例
关于Rust 解包枚举的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66268838/
我是一名优秀的程序员,十分优秀!