Returns true if this group of ACLs is empty.
(&self)
| 58 | impl FileAcls { |
| 59 | /// Returns true if this group of ACLs is empty. |
| 60 | pub fn is_empty(&self) -> bool { |
| 61 | self.readers.is_empty() |
| 62 | } |
| 63 | |
| 64 | /// Extends this set of ACLs with the given `readers`. |
| 65 | pub fn with_readers<T: Into<Vec<String>>>(mut self, readers: T) -> Self { |
no outgoing calls