pub struct StegoConfig {
pub algorithm: StegoAlgorithm,
pub embedding_capacity: f64,
pub adaptive_embedding: bool,
pub cover_medium: CoverMedium,
pub entropy_matching: bool,
}Expand description
Steganography configuration
Fields§
§algorithm: StegoAlgorithmSteganography algorithm
embedding_capacity: f64Embedding capacity (bits per unit)
adaptive_embedding: boolEnable adaptive embedding
cover_medium: CoverMediumCover medium type
entropy_matching: boolEnable entropy matching
Trait Implementations§
Source§impl Clone for StegoConfig
impl Clone for StegoConfig
Source§fn clone(&self) -> StegoConfig
fn clone(&self) -> StegoConfig
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 StegoConfig
impl Debug for StegoConfig
Source§impl Default for StegoConfig
impl Default for StegoConfig
Source§impl<'de> Deserialize<'de> for StegoConfig
impl<'de> Deserialize<'de> for StegoConfig
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 StegoConfig
impl RefUnwindSafe for StegoConfig
impl Send for StegoConfig
impl Sync for StegoConfig
impl Unpin for StegoConfig
impl UnsafeUnpin for StegoConfig
impl UnwindSafe for StegoConfig
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