pub struct GetConfigKeyResponse {
pub found: bool,
pub data: Vec<u8>,
}Expand description
The response returned when fetching the data for a single config key
Fields§
§found: boolWhether or not the key was found
data: Vec<u8>The value of the key, if found
Trait Implementations§
source§impl Clone for GetConfigKeyResponse
impl Clone for GetConfigKeyResponse
source§fn clone(&self) -> GetConfigKeyResponse
fn clone(&self) -> GetConfigKeyResponse
Returns a copy 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 GetConfigKeyResponse
impl Debug for GetConfigKeyResponse
source§impl Default for GetConfigKeyResponse
impl Default for GetConfigKeyResponse
source§fn default() -> GetConfigKeyResponse
fn default() -> GetConfigKeyResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetConfigKeyResponse
impl<'de> Deserialize<'de> for GetConfigKeyResponse
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 RefUnwindSafe for GetConfigKeyResponse
impl Send for GetConfigKeyResponse
impl Sync for GetConfigKeyResponse
impl Unpin for GetConfigKeyResponse
impl UnwindSafe for GetConfigKeyResponse
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