clippy: add is_empty() when len() is implemented
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
7c78d54231
commit
3d8cd0ced7
|
@ -322,6 +322,9 @@ impl ACLXAttrBuffer {
|
|||
self.buffer.len()
|
||||
}
|
||||
|
||||
/// The buffer always contains at least the version, it is never empty
|
||||
pub const fn is_empty(&self) -> bool { false }
|
||||
|
||||
/// Borrow raw buffer as mut slice.
|
||||
pub fn as_mut_slice(&mut self) -> &mut [u8] {
|
||||
self.buffer.as_mut_slice()
|
||||
|
|
|
@ -184,6 +184,11 @@ impl<K: std::cmp::Eq + std::hash::Hash + Copy, V> LruCache<K, V> {
|
|||
self.map.len()
|
||||
}
|
||||
|
||||
/// Returns `true` when the cache is empty
|
||||
pub fn is_empty(&self) -> bool {
|
||||
self.map.is_empty()
|
||||
}
|
||||
|
||||
/// Get a mutable reference to the value identified by `key`.
|
||||
/// This will update the cache entry to be the most recently used entry.
|
||||
/// On cache misses, the cachers fetch method is called to get a corresponding
|
||||
|
|
Loading…
Reference in New Issue