Struct procfs::sys::fs::binfmt_misc::BinFmtEntry
source · pub struct BinFmtEntry {
pub name: String,
pub enabled: bool,
pub interpreter: String,
pub flags: BinFmtFlags,
pub data: BinFmtData,
}
Expand description
A registered binary format entry
For more info, see the kernel doc Documentation/admin-guide/binfmt-misc.rst
Fields§
§name: String
The name of the entry
Corresponds to a file in /proc/sys/fs/binfmt_misc/
enabled: bool
Is the entry enabled or not
interpreter: String
Full path to the interpreter to run this entry
flags: BinFmtFlags
§data: BinFmtData
Trait Implementations§
source§impl Clone for BinFmtEntry
impl Clone for BinFmtEntry
source§fn clone(&self) -> BinFmtEntry
fn clone(&self) -> BinFmtEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more