pub trait CompressedCiphertex {
const M: usize = _;
// Required methods
fn poly_bytes(&self) -> &[u8] ⓘ;
fn polyvec_bytes(&self) -> &[u8] ⓘ;
fn poly_bytes_mut(&mut self) -> &mut [u8] ⓘ;
fn polyvec_bytes_mut(&mut self) -> &mut [u8] ⓘ;
}Provided Associated Constants§
Required Methods§
fn poly_bytes(&self) -> &[u8] ⓘ
fn polyvec_bytes(&self) -> &[u8] ⓘ
fn poly_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn polyvec_bytes_mut(&mut self) -> &mut [u8] ⓘ
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".