pub struct PassiveDistributionConfig {
pub enable: bool,
pub dns_domains: Vec<String>,
pub image_urls: Vec<String>,
pub blockchain_networks: Vec<BlockchainNetwork>,
pub check_interval_secs: u64,
}Expand description
Passive distribution configuration
Fields§
§enable: boolEnable passive distribution
dns_domains: Vec<String>DNS TXT record domains to monitor
image_urls: Vec<String>Image URLs for LSB steganography
blockchain_networks: Vec<BlockchainNetwork>Blockchain networks to monitor
check_interval_secs: u64Check interval (seconds)
Trait Implementations§
Source§impl Clone for PassiveDistributionConfig
impl Clone for PassiveDistributionConfig
Source§fn clone(&self) -> PassiveDistributionConfig
fn clone(&self) -> PassiveDistributionConfig
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 PassiveDistributionConfig
impl Debug for PassiveDistributionConfig
Source§impl Default for PassiveDistributionConfig
impl Default for PassiveDistributionConfig
Source§impl<'de> Deserialize<'de> for PassiveDistributionConfig
impl<'de> Deserialize<'de> for PassiveDistributionConfig
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 PassiveDistributionConfig
impl RefUnwindSafe for PassiveDistributionConfig
impl Send for PassiveDistributionConfig
impl Sync for PassiveDistributionConfig
impl Unpin for PassiveDistributionConfig
impl UnsafeUnpin for PassiveDistributionConfig
impl UnwindSafe for PassiveDistributionConfig
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