pub trait Settings {
const MIN_CHUNK_SIZE: u32 = 4u32;
const MAX_CHUNK_SIZE: u32 = 4_096u32;
const CLEANUP: CleanupMode = CleanupMode::OnChunkRead;
}
Provided Associated Constants§
const MIN_CHUNK_SIZE: u32 = 4u32
const MAX_CHUNK_SIZE: u32 = 4_096u32
const CLEANUP: CleanupMode = CleanupMode::OnChunkRead
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.