nacos-sdk 0.7.0

Nacos client in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use nacos_macro::response;

/// ConfigChangeNotifyResponse by client.
#[response(identity = "ConfigChangeNotifyResponse", module = "config")]
pub(crate) struct ConfigChangeNotifyResponse {}

impl ConfigChangeNotifyResponse {
    /// Set request_id.
    pub(crate) fn request_id(mut self, request_id: String) -> Self {
        self.request_id = Some(request_id);
        self
    }
}