Struct optee_utee::object::ObjectInfo

source ·
pub struct ObjectInfo { /* private fields */ }
Expand description

Represent the characteristics of an object. This info can be returned by GenericObject function info

Implementations§

source§

impl ObjectInfo

source

pub fn from_raw(raw: TEE_ObjectInfo) -> Self

Return an ObjectInfo struct based on the raw structure TEE_ObjectInfo. The raw structure contains following fields:

  1. objectType: The parameter represents one of the TransientObjectType.
  2. objectSize: The current size in bits of the object as determined by its attributes. This will always be less than or equal to maxObjectSize. Set to 0 for uninitialized and data only objects.
  3. maxObjectSize: The maximum objectSize which this object can represent.
  4. objectUsage: A bit vector of UsageFlag.
  5. dataSize:
  6. dataPosition:
    • For a PersistentObject, set to the current position in the data for this handle. Data positions for different handles on the same object may differ.
    • For a TransientObject, set to 0.
  7. handleFlags: A bit vector containing one or more HandleFlag or DataFlag.
source

pub fn data_size(&self) -> usize

Return the dataSize field of the raw structure TEE_ObjectInfo.

source

pub fn object_size(&self) -> usize

Return the objectSize field of the raw structure TEE_ObjectInfo.

source

pub fn object_type(&self) -> u32

Return the objectType field of the raw structure TEE_ObjectInfo.

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.