pub struct ExternalBackendConfig {
pub patch: HashMap<String, String>,
pub kind: String,
pub config: HashMap<String, String>,
}Expand description
Additional configuration information for external backend, its items will be merged to the configuration from image.
Fields§
§patch: HashMap<String, String>External backend identifier to merge.
kind: StringExternal backend type.
config: HashMap<String, String>External backend config items to merge.
Trait Implementations§
Source§impl Clone for ExternalBackendConfig
impl Clone for ExternalBackendConfig
Source§fn clone(&self) -> ExternalBackendConfig
fn clone(&self) -> ExternalBackendConfig
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 ExternalBackendConfig
impl Debug for ExternalBackendConfig
Source§impl Default for ExternalBackendConfig
impl Default for ExternalBackendConfig
Source§fn default() -> ExternalBackendConfig
fn default() -> ExternalBackendConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalBackendConfig
impl<'de> Deserialize<'de> for ExternalBackendConfig
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 PartialEq for ExternalBackendConfig
impl PartialEq for ExternalBackendConfig
Source§impl Serialize for ExternalBackendConfig
impl Serialize for ExternalBackendConfig
impl Eq for ExternalBackendConfig
impl StructuralPartialEq for ExternalBackendConfig
Auto Trait Implementations§
impl Freeze for ExternalBackendConfig
impl RefUnwindSafe for ExternalBackendConfig
impl Send for ExternalBackendConfig
impl Sync for ExternalBackendConfig
impl Unpin for ExternalBackendConfig
impl UnwindSafe for ExternalBackendConfig
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