pub struct ReloadConfigResponse {
pub accepted: bool,
pub applied_changes: Vec<String>,
}Expand description
Response for ReloadConfigRequest.
Fields§
§accepted: boolWhether the reload was applied.
applied_changes: Vec<String>Changes that took effect (human-readable strings).
Trait Implementations§
Source§impl Clone for ReloadConfigResponse
impl Clone for ReloadConfigResponse
Source§fn clone(&self) -> ReloadConfigResponse
fn clone(&self) -> ReloadConfigResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReloadConfigResponse
impl Debug for ReloadConfigResponse
Source§impl<'de> Deserialize<'de> for ReloadConfigResponse
impl<'de> Deserialize<'de> for ReloadConfigResponse
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
Auto Trait Implementations§
impl Freeze for ReloadConfigResponse
impl RefUnwindSafe for ReloadConfigResponse
impl Send for ReloadConfigResponse
impl Sync for ReloadConfigResponse
impl Unpin for ReloadConfigResponse
impl UnsafeUnpin for ReloadConfigResponse
impl UnwindSafe for ReloadConfigResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more