#[repr(C)]
pub struct StackSizeRequest { pub id: [u64; 4], pub revision: u64, pub response: Option<NonNull<StackSizeResponse>>, pub stack_size: u64, }
Expand description

Specify how much stack you desire the bootloader to give you

Fields

id: [u64; 4]

The request id array

revision: u64

The request revision

response: Option<NonNull<StackSizeResponse>>

Response pointer

stack_size: u64

The amount of stack to request

Implementations

Create a new instance of this request

Alias to Self::new

Wrap the item in [Request]

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.