Struct optee_utee_sys::TEE_iSocket_s

source ·
#[repr(C)]
pub struct TEE_iSocket_s { pub TEE_iSocketVersion: u32, pub protocolID: u8, pub open: unsafe extern "C" fn(ctx: *mut TEE_iSocketHandle, setup: *mut c_void, protocolError: *mut u32) -> TEE_Result, pub close: unsafe extern "C" fn(ctx: TEE_iSocketHandle) -> TEE_Result, pub send: unsafe extern "C" fn(ctx: TEE_iSocketHandle, buf: *const c_void, length: *mut u32, timeout: u32) -> TEE_Result, pub recv: unsafe extern "C" fn(ctx: TEE_iSocketHandle, buf: *mut c_void, length: *mut u32, timeout: u32) -> TEE_Result, pub error: unsafe extern "C" fn(ctx: TEE_iSocketHandle) -> u32, pub ioctl: unsafe extern "C" fn(ctx: TEE_iSocketHandle, commandCode: u32, buf: *mut c_void, length: *mut u32) -> TEE_Result, }

Fields§

§TEE_iSocketVersion: u32§protocolID: u8§open: unsafe extern "C" fn(ctx: *mut TEE_iSocketHandle, setup: *mut c_void, protocolError: *mut u32) -> TEE_Result§close: unsafe extern "C" fn(ctx: TEE_iSocketHandle) -> TEE_Result§send: unsafe extern "C" fn(ctx: TEE_iSocketHandle, buf: *const c_void, length: *mut u32, timeout: u32) -> TEE_Result§recv: unsafe extern "C" fn(ctx: TEE_iSocketHandle, buf: *mut c_void, length: *mut u32, timeout: u32) -> TEE_Result§error: unsafe extern "C" fn(ctx: TEE_iSocketHandle) -> u32§ioctl: unsafe extern "C" fn(ctx: TEE_iSocketHandle, commandCode: u32, buf: *mut c_void, length: *mut u32) -> TEE_Result

Trait Implementations§

source§

impl Clone for TEE_iSocket_s

source§

fn clone(&self) -> TEE_iSocket_s

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TEE_iSocket_s

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for TEE_iSocket_s

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.