pub struct ReplState {
pub graph: Option<CodeGraph>,
pub graph_path: Option<PathBuf>,
}Expand description
Session state preserved across commands.
Fields§
§graph: Option<CodeGraph>Currently loaded .acb graph for querying.
graph_path: Option<PathBuf>Path to the loaded .acb file.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReplState
impl RefUnwindSafe for ReplState
impl Send for ReplState
impl Sync for ReplState
impl Unpin for ReplState
impl UnsafeUnpin for ReplState
impl UnwindSafe for ReplState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more