[][src]Struct x86_64::structures::paging::frame::PhysFrameRangeInclusive

#[repr(C)]pub struct PhysFrameRangeInclusive<S: PageSize = Size4KiB> {
    pub start: PhysFrame<S>,
    pub end: PhysFrame<S>,
}

An range of physical memory frames, inclusive the upper bound.

Fields

start: PhysFrame<S>

The start of the range, inclusive.

end: PhysFrame<S>

The start of the range, inclusive.

Implementations

impl<S: PageSize> PhysFrameRangeInclusive<S>[src]

pub fn is_empty(&self) -> bool[src]

Returns whether the range contains no frames.

Trait Implementations

impl<S: Clone + PageSize> Clone for PhysFrameRangeInclusive<S>[src]

impl<S: Copy + PageSize> Copy for PhysFrameRangeInclusive<S>[src]

impl<S: PageSize> Debug for PhysFrameRangeInclusive<S>[src]

impl<S: Eq + PageSize> Eq for PhysFrameRangeInclusive<S>[src]

impl<S: PageSize> Iterator for PhysFrameRangeInclusive<S>[src]

type Item = PhysFrame<S>

The type of the elements being iterated over.

impl<S: PartialEq + PageSize> PartialEq<PhysFrameRangeInclusive<S>> for PhysFrameRangeInclusive<S>[src]

impl<S: PageSize> StructuralEq for PhysFrameRangeInclusive<S>[src]

impl<S: PageSize> StructuralPartialEq for PhysFrameRangeInclusive<S>[src]

Auto Trait Implementations

impl<S> Send for PhysFrameRangeInclusive<S> where
    S: Send

impl<S> Sync for PhysFrameRangeInclusive<S> where
    S: Sync

impl<S> Unpin for PhysFrameRangeInclusive<S> where
    S: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.