pub struct ConfigResponse {
pub id: String,
pub namespace: String,
pub key: String,
pub value: Value,
pub environment: String,
pub version: u64,
pub metadata: ConfigMetadataResponse,
}Expand description
Response for config operations
Fields§
§id: String§namespace: String§key: String§value: Value§environment: String§version: u64§metadata: ConfigMetadataResponseTrait Implementations§
Source§impl Debug for ConfigResponse
impl Debug for ConfigResponse
Source§impl From<ConfigEntry> for ConfigResponse
impl From<ConfigEntry> for ConfigResponse
Source§fn from(entry: ConfigEntry) -> Self
fn from(entry: ConfigEntry) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigResponse
impl RefUnwindSafe for ConfigResponse
impl Send for ConfigResponse
impl Sync for ConfigResponse
impl Unpin for ConfigResponse
impl UnwindSafe for ConfigResponse
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