// SPDX-License-Identifier: MPL-2.0
pub(crate)structIrqRemapping{_private:(),
}implIrqRemapping{pub(crate)constfnnew()->Self{Self{ _private:()}}/// Initializes the remapping entry for the specific IRQ number.
////// This will do nothing if the entry is already initialized or interrupt
/// remapping is disabled or not supported by the architecture.
pub(crate)fninit(&self, _irq_num:u8){}/// Gets the remapping index of the IRQ line.
////// This method will return `None` if interrupt remapping is disabled or
/// not supported by the architecture.
pub(crate)fnremapping_index(&self)->Option<u16>{None}}