pub struct EmbedResult {
pub stego_bits: Vec<u8>,
pub total_cost: f64,
pub num_modifications: usize,
}Expand description
Result of STC embedding: the stego bit sequence and its total distortion cost.
Fields§
§stego_bits: Vec<u8>§total_cost: f64§num_modifications: usizeNumber of positions where cover bit != stego bit.
Auto Trait Implementations§
impl Freeze for EmbedResult
impl RefUnwindSafe for EmbedResult
impl Send for EmbedResult
impl Sync for EmbedResult
impl Unpin for EmbedResult
impl UnsafeUnpin for EmbedResult
impl UnwindSafe for EmbedResult
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