pub struct ConfigPublishRequest {
pub config_request: ConfigRequest,
pub content: String,
pub cas_md5: String,
pub addition_map: HashMap<String, String>,
}Expand description
Configuration publish request
Fields§
§config_request: ConfigRequest§content: String§cas_md5: String§addition_map: HashMap<String, String>Implementations§
Source§impl ConfigPublishRequest
impl ConfigPublishRequest
pub fn new(data_id: &str, group: &str, tenant: &str, content: &str) -> Self
pub fn with_cas_md5(self, md5: &str) -> Self
pub fn with_addition(self, key: &str, value: &str) -> Self
pub fn with_app_name(self, app_name: &str) -> Self
pub fn with_type(self, config_type: &str) -> Self
Trait Implementations§
Source§impl Clone for ConfigPublishRequest
impl Clone for ConfigPublishRequest
Source§fn clone(&self) -> ConfigPublishRequest
fn clone(&self) -> ConfigPublishRequest
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigPublishRequest
impl Debug for ConfigPublishRequest
Source§impl Default for ConfigPublishRequest
impl Default for ConfigPublishRequest
Source§fn default() -> ConfigPublishRequest
fn default() -> ConfigPublishRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigPublishRequest
impl<'de> Deserialize<'de> for ConfigPublishRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl RequestTrait for ConfigPublishRequest
impl RequestTrait for ConfigPublishRequest
Source§fn request_type(&self) -> &'static str
fn request_type(&self) -> &'static str
Get request type identifier
Source§fn insert_headers(&mut self, headers: HashMap<String, String>)
fn insert_headers(&mut self, headers: HashMap<String, String>)
Insert headers into the request
Source§fn request_id(&self) -> String
fn request_id(&self) -> String
Get unique request identifier
Source§fn to_payload(&self, client_ip: &str) -> Payloadwhere
Self: Serialize,
fn to_payload(&self, client_ip: &str) -> Payloadwhere
Self: Serialize,
Convert to gRPC Payload
Source§fn from_payload<T>(value: &Payload) -> Twhere
T: for<'a> Deserialize<'a> + Default,
fn from_payload<T>(value: &Payload) -> Twhere
T: for<'a> Deserialize<'a> + Default,
Deserialize request from gRPC payload
Auto Trait Implementations§
impl Freeze for ConfigPublishRequest
impl RefUnwindSafe for ConfigPublishRequest
impl Send for ConfigPublishRequest
impl Sync for ConfigPublishRequest
impl Unpin for ConfigPublishRequest
impl UnwindSafe for ConfigPublishRequest
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request