// Copyright 2021 Twitter, Inc.
// Copyright 2023 Pelikan Cache contributors
// Licensed under the MIT and Apache-2.0 licenses
usethiserror::Error;#[derive(Error, Debug)]pubenumTtlBucketsError{#[error("item is oversized ({size:?} bytes)")]
ItemOversized { size:usize},#[error("ttl bucket expansion failed, no free segments")]
NoFreeSegments,}