pub struct AddressRange {
pub typ: AddressRangeType,
pub to: u32,
pub from: u32,
}Fields§
§typ: AddressRangeType§to: u32§from: u32Implementations§
Source§impl AddressRange
impl AddressRange
pub const fn new(from: u32, to: u32, typ: AddressRangeType) -> Self
Trait Implementations§
Source§impl Clone for AddressRange
impl Clone for AddressRange
Source§fn clone(&self) -> AddressRange
fn clone(&self) -> AddressRange
Returns a duplicate 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 AddressRange
impl Debug for AddressRange
Source§impl Default for AddressRange
impl Default for AddressRange
impl Copy for AddressRange
Auto Trait Implementations§
impl Freeze for AddressRange
impl RefUnwindSafe for AddressRange
impl Send for AddressRange
impl Sync for AddressRange
impl Unpin for AddressRange
impl UnwindSafe for AddressRange
Blanket Implementations§
Source§impl<T, U> AssertInto<U> for T
impl<T, U> AssertInto<U> for T
fn assert_into(self) -> U
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