[][src]Struct optee_teec::Session

pub struct Session { /* fields omitted */ }

Represents a connection between a client application and a trusted application.

Methods

impl Session[src]

pub fn new<A: Param, B: Param, C: Param, D: Param>(
    context: &mut Context,
    uuid: Uuid,
    operation: Option<&mut Operation<A, B, C, D>>
) -> Result<Self>
[src]

Initializes a TEE session object with specified context and uuid.

pub fn as_mut_raw_ptr(&mut self) -> *mut TEEC_Session[src]

Converts a TEE client context to a raw pointer.

pub fn invoke_command<A: Param, B: Param, C: Param, D: Param>(
    &mut self,
    command_id: u32,
    operation: &mut Operation<A, B, C, D>
) -> Result<()>
[src]

Invokes a command with an operation with this session.

Trait Implementations

impl Drop for Session[src]

Auto Trait Implementations

impl !Send for Session

impl !Sync for Session

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]