pub enum StringOrPathBuf {
String(String),
PathBuf(PathBuf),
}
Variants§
Auto Trait Implementations§
impl Freeze for StringOrPathBuf
impl RefUnwindSafe for StringOrPathBuf
impl Send for StringOrPathBuf
impl Sync for StringOrPathBuf
impl Unpin for StringOrPathBuf
impl UnwindSafe for StringOrPathBuf
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