pub enum LogPathMode {
RelativeTo(PathBuf),
Absolute,
}Expand description
Path representation for copied ACP logs in batch reports.
Variants§
RelativeTo(PathBuf)
Report paths relative to this root when possible.
Absolute
Report absolute paths.
Trait Implementations§
Source§impl Clone for LogPathMode
impl Clone for LogPathMode
Source§fn clone(&self) -> LogPathMode
fn clone(&self) -> LogPathMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogPathMode
impl Debug for LogPathMode
Source§impl Default for LogPathMode
impl Default for LogPathMode
Source§fn default() -> LogPathMode
fn default() -> LogPathMode
Returns the “default value” for a type. Read more
impl Eq for LogPathMode
Source§impl PartialEq for LogPathMode
impl PartialEq for LogPathMode
Source§fn eq(&self, other: &LogPathMode) -> bool
fn eq(&self, other: &LogPathMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogPathMode
Auto Trait Implementations§
impl Freeze for LogPathMode
impl RefUnwindSafe for LogPathMode
impl Send for LogPathMode
impl Sync for LogPathMode
impl Unpin for LogPathMode
impl UnsafeUnpin for LogPathMode
impl UnwindSafe for LogPathMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.