pub trait Array {
fn metadata(&self) -> Result<Metadata>;
fn advise(&self, offset: u64, len: u64, advice: Advice) -> Result<()>;
}Expand description
Required methods
Return the Metadata for the array. This is similar to
std::fs::File::metadata, though it returns fewer fields since the
underlying device may not be an actual filesystem inode.