pub struct ExportDestinationConfig {
pub name: String,
pub destination_type: DestinationType,
pub config: HashMap<String, String>,
pub enabled: bool,
}Expand description
Export destination configuration
Fields§
§name: String§destination_type: DestinationType§config: HashMap<String, String>§enabled: boolTrait Implementations§
Source§impl Clone for ExportDestinationConfig
impl Clone for ExportDestinationConfig
Source§fn clone(&self) -> ExportDestinationConfig
fn clone(&self) -> ExportDestinationConfig
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 ExportDestinationConfig
impl Debug for ExportDestinationConfig
Source§impl<'de> Deserialize<'de> for ExportDestinationConfig
impl<'de> Deserialize<'de> for ExportDestinationConfig
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 ExportDestinationConfig
impl RefUnwindSafe for ExportDestinationConfig
impl Send for ExportDestinationConfig
impl Sync for ExportDestinationConfig
impl Unpin for ExportDestinationConfig
impl UnwindSafe for ExportDestinationConfig
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