pub enum IntegrationHotfix {
ProviderVersion {
provider_id: String,
new_version: String,
},
ProviderConnector {
provider_id: String,
new_connector_name: String,
},
ChannelEndpoint {
channel_id: String,
new_endpoint: String,
},
ChannelEnabled {
channel_id: String,
enabled: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for IntegrationHotfix
impl Clone for IntegrationHotfix
Source§fn clone(&self) -> IntegrationHotfix
fn clone(&self) -> IntegrationHotfix
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 IntegrationHotfix
impl Debug for IntegrationHotfix
Source§impl<'de> Deserialize<'de> for IntegrationHotfix
impl<'de> Deserialize<'de> for IntegrationHotfix
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 IntegrationHotfix
impl PartialEq for IntegrationHotfix
Source§impl Serialize for IntegrationHotfix
impl Serialize for IntegrationHotfix
impl Eq for IntegrationHotfix
impl StructuralPartialEq for IntegrationHotfix
Auto Trait Implementations§
impl Freeze for IntegrationHotfix
impl RefUnwindSafe for IntegrationHotfix
impl Send for IntegrationHotfix
impl Sync for IntegrationHotfix
impl Unpin for IntegrationHotfix
impl UnsafeUnpin for IntegrationHotfix
impl UnwindSafe for IntegrationHotfix
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