pub enum ShieldListContent {
Country(ShieldListContentCountry),
Domain(ShieldListContentDomain),
Email(ShieldListContentEmail),
Ip(ShieldListContentIp),
Integration(ShieldListContentIntegration),
Unknown(Value),
}Variants§
Country(ShieldListContentCountry)
Domain(ShieldListContentDomain)
Email(ShieldListContentEmail)
Ip(ShieldListContentIp)
Integration(ShieldListContentIntegration)
Unknown(Value)
An unrecognized discriminator, retained verbatim (open union).
Trait Implementations§
Source§impl Clone for ShieldListContent
impl Clone for ShieldListContent
Source§fn clone(&self) -> ShieldListContent
fn clone(&self) -> ShieldListContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ShieldListContent
impl Debug for ShieldListContent
Source§impl Default for ShieldListContent
impl Default for ShieldListContent
Source§impl<'de> Deserialize<'de> for ShieldListContent
impl<'de> Deserialize<'de> for ShieldListContent
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ShieldListContent
impl PartialEq for ShieldListContent
Source§impl Serialize for ShieldListContent
impl Serialize for ShieldListContent
impl StructuralPartialEq for ShieldListContent
Auto Trait Implementations§
impl Freeze for ShieldListContent
impl RefUnwindSafe for ShieldListContent
impl Send for ShieldListContent
impl Sync for ShieldListContent
impl Unpin for ShieldListContent
impl UnsafeUnpin for ShieldListContent
impl UnwindSafe for ShieldListContent
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