Enum indicator_extractor::parser::Indicator
source · pub enum Indicator {
Url(String),
Domain(String),
File(String),
Email(String),
Ipv4(Ipv4Addr),
Ipv6(Ipv6Addr),
Sha512(String),
Sha256(String),
Sha1(String),
Md5(String),
}
Variants§
Url(String)
Domain(String)
File(String)
Email(String)
Ipv4(Ipv4Addr)
Ipv6(Ipv6Addr)
Sha512(String)
Sha256(String)
Sha1(String)
Md5(String)
Trait Implementations§
source§impl Ord for Indicator
impl Ord for Indicator
source§impl PartialOrd for Indicator
impl PartialOrd for Indicator
impl Eq for Indicator
impl StructuralPartialEq for Indicator
Auto Trait Implementations§
impl Freeze for Indicator
impl RefUnwindSafe for Indicator
impl Send for Indicator
impl Sync for Indicator
impl Unpin for Indicator
impl UnwindSafe for Indicator
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