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: StringThe name of the entry
Corresponds to a file in /proc/sys/fs/binfmt_misc/
enabled: boolIs the entry enabled or not
interpreter: StringFull path to the interpreter to run this entry
flags: BinFmtFlags§data: BinFmtDataTrait 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