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_ResultTrait Implementations§
source§impl Clone for TEE_iSocket_s
impl Clone for TEE_iSocket_s
source§fn clone(&self) -> TEE_iSocket_s
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TEE_iSocket_s
impl Debug for TEE_iSocket_s
impl Copy for TEE_iSocket_s
Auto Trait Implementations§
impl Freeze for TEE_iSocket_s
impl RefUnwindSafe for TEE_iSocket_s
impl Send for TEE_iSocket_s
impl Sync for TEE_iSocket_s
impl Unpin for TEE_iSocket_s
impl UnwindSafe for TEE_iSocket_s
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more