#[non_exhaustive]pub enum UpdateDataset {
Show 26 variants
GeoIp(UpdateGeoIp),
IpCloudService(UpdateNetIp),
IpCloudProvider(UpdateNetIp),
IpHeadquarters(UpdateNetIp),
CustomMapIpNet(UpdateNetIp),
IpMac(UpdateIpMap),
IpDNS(UpdateIpMapList),
MacHost(UpdateTextMap),
HostUser(UpdateTextMap),
UserTag(UpdateTextMap),
AssetTag(UpdateTextMap),
UserHeadquarters(UpdateTextMap),
CustomMapText(UpdateTextMap),
BlockIp(UpdateIpSet),
CustomIpList(UpdateIpSet),
BlockDomain(UpdateTextSet),
BlockEmailSender(UpdateTextSet),
BlockCountry(UpdateTextSet),
CustomTextList(UpdateTextSet),
CustomMapTextList(UpdateTextMapList),
MantainceCalendar(UpdateCalendar),
Configuration(UpdateTextMap),
Secrets(UpdateTextMap),
HostVulnerable(UpdateTextMapList),
CorrelationRules(UpdateGeoIp),
I18n(UpdateI18n),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GeoIp(UpdateGeoIp)
IpCloudService(UpdateNetIp)
IpCloudProvider(UpdateNetIp)
IpHeadquarters(UpdateNetIp)
CustomMapIpNet(UpdateNetIp)
IpMac(UpdateIpMap)
IpDNS(UpdateIpMapList)
MacHost(UpdateTextMap)
HostUser(UpdateTextMap)
UserTag(UpdateTextMap)
AssetTag(UpdateTextMap)
UserHeadquarters(UpdateTextMap)
CustomMapText(UpdateTextMap)
BlockIp(UpdateIpSet)
CustomIpList(UpdateIpSet)
BlockDomain(UpdateTextSet)
BlockEmailSender(UpdateTextSet)
BlockCountry(UpdateTextSet)
CustomTextList(UpdateTextSet)
CustomMapTextList(UpdateTextMapList)
MantainceCalendar(UpdateCalendar)
Configuration(UpdateTextMap)
Secrets(UpdateTextMap)
HostVulnerable(UpdateTextMapList)
CorrelationRules(UpdateGeoIp)
I18n(UpdateI18n)
Trait Implementations§
Source§impl Debug for UpdateDataset
impl Debug for UpdateDataset
Auto Trait Implementations§
impl Freeze for UpdateDataset
impl RefUnwindSafe for UpdateDataset
impl Send for UpdateDataset
impl Sync for UpdateDataset
impl Unpin for UpdateDataset
impl UnwindSafe for UpdateDataset
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