pub enum ConfigMappingResponse {
Value {
message: String,
value: ConfigMappingValue,
},
List {
message: String,
value: ConfigMappingListValue,
},
Deleted {
message: String,
uuid: String,
},
}Expand description
Parsed response variants for configMapping.
Variants§
Value
Response for create/read/update modes.
List
Response for get mode.
Deleted
Response for delete mode.
Trait Implementations§
Source§impl Clone for ConfigMappingResponse
impl Clone for ConfigMappingResponse
Source§fn clone(&self) -> ConfigMappingResponse
fn clone(&self) -> ConfigMappingResponse
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 moreAuto Trait Implementations§
impl Freeze for ConfigMappingResponse
impl RefUnwindSafe for ConfigMappingResponse
impl Send for ConfigMappingResponse
impl Sync for ConfigMappingResponse
impl Unpin for ConfigMappingResponse
impl UnsafeUnpin for ConfigMappingResponse
impl UnwindSafe for ConfigMappingResponse
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