pub struct LinuxConfig {
pub force_keyring: bool,
pub extra_bridge_paths: Vec<String>,
}Expand description
Linux-specific configuration.
Fields§
§force_keyring: boolForce the software keyring backend, bypassing WSL bridge detection and TPM probing.
extra_bridge_paths: Vec<String>Additional paths to search for the Windows TPM bridge executable (WSL only).
Trait Implementations§
Source§impl Clone for LinuxConfig
impl Clone for LinuxConfig
Source§fn clone(&self) -> LinuxConfig
fn clone(&self) -> LinuxConfig
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 LinuxConfig
impl Debug for LinuxConfig
Source§impl Default for LinuxConfig
impl Default for LinuxConfig
Source§fn default() -> LinuxConfig
fn default() -> LinuxConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LinuxConfig
impl RefUnwindSafe for LinuxConfig
impl Send for LinuxConfig
impl Sync for LinuxConfig
impl Unpin for LinuxConfig
impl UnsafeUnpin for LinuxConfig
impl UnwindSafe for LinuxConfig
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