pub struct YuiVars {
pub os: String,
pub arch: String,
pub host: String,
pub user: String,
pub source: String,
}Fields§
§os: String"windows" / "macos" / "linux" (from std::env::consts::OS).
arch: String"x86_64" / "aarch64" (from std::env::consts::ARCH).
host: StringMachine hostname.
user: StringCurrent user name.
source: StringAbsolute path to the dotfiles source repo ($DOTFILES).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for YuiVars
impl RefUnwindSafe for YuiVars
impl Send for YuiVars
impl Sync for YuiVars
impl Unpin for YuiVars
impl UnsafeUnpin for YuiVars
impl UnwindSafe for YuiVars
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