Trait EntryReader

Source
pub trait EntryReader {
    // Required method
    fn entry_state(&self) -> EntryState;

    // Provided method
    fn main_id(&self) -> Option<FileId> { ... }
}
Expand description

A trait to read the entry state.

Required Methods§

Source

fn entry_state(&self) -> EntryState

Gets the entry state.

Provided Methods§

Source

fn main_id(&self) -> Option<FileId>

Gets the main file id.

Implementors§