pub struct RangeInfo {
pub child_address: u64,
pub parent_address: u64,
pub length: u64,
}Expand description
Range entry information.
Represents a single entry in a ranges property, mapping a child bus
address range to a parent bus address range.
Fields§
§child_address: u64Child bus address
parent_address: u64Parent bus address
length: u64Length of the region
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RangeInfo
impl RefUnwindSafe for RangeInfo
impl Send for RangeInfo
impl Sync for RangeInfo
impl Unpin for RangeInfo
impl UnwindSafe for RangeInfo
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