Struct captain::MulticoreBringupInfo
pub struct MulticoreBringupInfo {
pub ap_start_realmode_begin: VirtualAddress,
pub ap_start_realmode_end: VirtualAddress,
pub ap_gdt: VirtualAddress,
}
Expand description
Information needed to bring up APs (secondary CPUs) on x86_64.
Fields§
§ap_start_realmode_begin: VirtualAddress
The starting virtual addresses of the ap_start
realmode (16-bit) code.
ap_start_realmode_end: VirtualAddress
The ending virtual addresses (exclusive) of the ap_start
realmode (16-bit) code.
ap_gdt: VirtualAddress
The address of the GDT set up for each AP (secondary CPU)
Auto Trait Implementations§
impl RefUnwindSafe for MulticoreBringupInfo
impl Send for MulticoreBringupInfo
impl Sync for MulticoreBringupInfo
impl Unpin for MulticoreBringupInfo
impl UnwindSafe for MulticoreBringupInfo
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.