pub struct WinePath(pub String);Expand description
A file path within Wine. Wrapper around a string.
use winepath::WinePath;
let wine_path = WinePath(r"C:\windows\system32\ddraw.dll".to_string());Tuple Fields§
§0: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for WinePath
impl RefUnwindSafe for WinePath
impl Send for WinePath
impl Sync for WinePath
impl Unpin for WinePath
impl UnwindSafe for WinePath
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