pub enum ObjectBlueprint {
Untyped {
size_bits: usize,
},
Endpoint,
Notification,
CNode {
size_bits: usize,
},
Tcb,
SchedContext {
size_bits: usize,
},
Reply,
Arch(ObjectBlueprintArch),
}
Expand description
An object description for Untyped::untyped_retype
.
Variants§
Untyped
Fields
§
size_bits: usize
Endpoint
Notification
CNode
Fields
§
size_bits: usize
Tcb
SchedContext
Fields
§
size_bits: usize
Reply
Arch(ObjectBlueprintArch)
Implementations§
Source§impl ObjectBlueprint
impl ObjectBlueprint
pub const fn ty(self) -> ObjectType
pub const fn api_size_bits(self) -> Option<usize>
pub const fn physical_size_bits(self) -> usize
pub const fn asid_pool() -> Self
Trait Implementations§
Source§impl Clone for ObjectBlueprint
impl Clone for ObjectBlueprint
Source§fn clone(&self) -> ObjectBlueprint
fn clone(&self) -> ObjectBlueprint
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ObjectBlueprint
impl Debug for ObjectBlueprint
Source§impl From<ObjectBlueprintAArch64> for ObjectBlueprint
impl From<ObjectBlueprintAArch64> for ObjectBlueprint
Source§fn from(ty: ObjectBlueprintSeL4Arch) -> Self
fn from(ty: ObjectBlueprintSeL4Arch) -> Self
Converts to this type from the input type.
Source§impl From<ObjectBlueprintArm> for ObjectBlueprint
impl From<ObjectBlueprintArm> for ObjectBlueprint
Source§fn from(blueprint: ObjectBlueprintArch) -> Self
fn from(blueprint: ObjectBlueprintArch) -> Self
Converts to this type from the input type.
Source§impl Ord for ObjectBlueprint
impl Ord for ObjectBlueprint
Source§impl PartialEq for ObjectBlueprint
impl PartialEq for ObjectBlueprint
Source§impl PartialOrd for ObjectBlueprint
impl PartialOrd for ObjectBlueprint
Source§fn partial_cmp(&self, other: &ObjectBlueprint) -> Option<Ordering>
fn partial_cmp(&self, other: &ObjectBlueprint) -> Option<Ordering>
impl Copy for ObjectBlueprint
impl Eq for ObjectBlueprint
impl StructuralPartialEq for ObjectBlueprint
Auto Trait Implementations§
impl Freeze for ObjectBlueprint
impl RefUnwindSafe for ObjectBlueprint
impl Send for ObjectBlueprint
impl Sync for ObjectBlueprint
impl Unpin for ObjectBlueprint
impl UnwindSafe for ObjectBlueprint
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)