Enum kernel::acpi::aml::parser::resource_template::ResourceMacro
source · pub enum ResourceMacro {
Show 18 variants
Irq {
wake_capable: bool,
is_shared: bool,
active_low: bool,
edge_triggered: bool,
irqs_mask: u16,
},
Dma {
speed_ty: DmaSpeedType,
is_bus_master: bool,
transfer_type: DmaTrasferType,
channels_mask: u8,
},
StartDependentFunctions {
compatibility_priority: u8,
performance_priority: u8,
},
EndDependentFunctions,
Io {
is_16_bit_decode: bool,
min_addr: u16,
max_addr: u16,
alignment: u8,
len: u8,
},
FixedIo {
base: u16,
len: u8,
},
FixedDma {
dma_req: u16,
channel: u16,
transfer_width: DmaTransferWidth,
},
VendorShort {
data: [u8; 6],
len: u8,
},
VendorLarge {
data: Vec<u8>,
},
Memory24 {
is_read_write: bool,
min_addr: u32,
max_addr: u32,
alignment: u16,
len: u16,
},
Memory32Fixed {
is_read_write: bool,
base_addr: u32,
len: u32,
},
Memory32 {
is_read_write: bool,
min_addr: u32,
max_addr: u32,
alignment: u32,
len: u32,
},
Interrupt {
is_consumer: bool,
edge_triggered: bool,
active_low: bool,
is_shared: bool,
wake_capable: bool,
interrupts: Vec<u32>,
resource_source: ResourceSource,
},
Register {
address_space: RegionSpace,
bit_width: u8,
offset: u8,
address: u64,
access_size: AccessType,
},
AddressSpaceWord(AddressSpace<u16>),
AddressSpaceDWord(AddressSpace<u32>),
AddressSpaceQWord(AddressSpace<u64>),
AddressSpaceExtended(AddressSpace<u64>),
}
Variants§
Irq
Dma
StartDependentFunctions
EndDependentFunctions
Io
FixedIo
FixedDma
VendorShort
VendorLarge
Memory24
Memory32Fixed
Memory32
Interrupt
Register
AddressSpaceWord(AddressSpace<u16>)
AddressSpaceDWord(AddressSpace<u32>)
AddressSpaceQWord(AddressSpace<u64>)
AddressSpaceExtended(AddressSpace<u64>)
Implementations§
source§impl ResourceMacro
impl ResourceMacro
fn try_parse_small_resource( parser: &mut Parser<'_>, first: u8 ) -> Result<Option<Self>, AmlParseError>
fn try_parse_large_resource( parser: &mut Parser<'_>, first: u8 ) -> Result<Option<Self>, AmlParseError>
pub fn try_parse_buffer( parser: &mut Parser<'_> ) -> Result<Option<Self>, AmlParseError>
Trait Implementations§
source§impl Clone for ResourceMacro
impl Clone for ResourceMacro
source§fn clone(&self) -> ResourceMacro
fn clone(&self) -> ResourceMacro
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 moresource§impl Debug for ResourceMacro
impl Debug for ResourceMacro
Auto Trait Implementations§
impl RefUnwindSafe for ResourceMacro
impl Send for ResourceMacro
impl Sync for ResourceMacro
impl Unpin for ResourceMacro
impl UnwindSafe for ResourceMacro
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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.