pub struct LogPaths { /* private fields */ }Expand description
Resolved paths to MTG Arena log files.
Both files reside in the same directory. player_prev_log contains the
previous session’s log and is used for catch-up parsing on startup.
Implementations§
Source§impl LogPaths
impl LogPaths
Sourcepub fn player_log(&self) -> &Path
pub fn player_log(&self) -> &Path
Returns the path to Player.log.
Sourcepub fn player_prev_log(&self) -> &Path
pub fn player_prev_log(&self) -> &Path
Returns the path to Player-prev.log.
Trait Implementations§
impl Eq for LogPaths
impl StructuralPartialEq for LogPaths
Auto Trait Implementations§
impl Freeze for LogPaths
impl RefUnwindSafe for LogPaths
impl Send for LogPaths
impl Sync for LogPaths
impl Unpin for LogPaths
impl UnsafeUnpin for LogPaths
impl UnwindSafe for LogPaths
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