#[repr(C)]
pub struct ByteBuffer { pub data: *const u8, pub len: usize, }
Expand description

An arbitrary-sized buffer of bytes in userspace, allocated by userspace.

This type is used when userspace may return arbitrary-sized data from a usercall. When reading from the buffer, the enclave must ensure the entire buffer is in the user memory range. Once the enclave is done with the buffer, it should deallocate the buffer buffer by calling free(data, len, 1).

Fields

data: *const u8len: usize

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. 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.