pub trait GetID {
// Required method
fn get_id(&self) -> Result<FileID>;
}
Expand description
A trait to obtain the file identifier of an underlying object.
Required Methods§
Sourcefn get_id(&self) -> Result<FileID>
fn get_id(&self) -> Result<FileID>
Obtains the file identifier, see FileID::new
for more information.