Struct optee_utee::time::Time[][src]

pub struct Time {
    pub seconds: u32,
    pub millis: u32,
}
Expand description

A millisecond resolution structure for saving the time.

Fields

seconds: u32

The field for the seconds.

millis: u32

The field for the milliseconds within this second.

Implementations

Create a new empty time structure.

Retrieve the current system time. The origin of this system time is arbitrary and implementation-dependent. Different TA instances may even have different system times. The only guarantee is that the system time is not reset or rolled back during the life of a given TA instance, so it can be used to compute time differences and operation deadlines.

Example

let mut time = Time::new();
time.system_time()?;

Panics

  1. If the Implementation detects any error.

Wait for the specified number of milliseconds or wait forever if timeout equals raw::TEE_TIMEOUT_INFINITE (0xFFFFFFFF). The waiting timer is System Time.

Parameters

  1. timeout: The number of milliseconds to wait, or raw::TEE_TIMEOUT_INFINITE.

Example

Time::wait(1000)?;

Errors

  1. Cancel: If the wait has been cancelled.

Panics

  1. If the Implementation detects any error.

Retrieve the persisten time of the Trusted Application. Since the timer is not automatically set, this function should be called after set_ta_time. The time is a real-time source of time and the origin of this time is set individually by each Trusted Application. Also, the time SHALL persist across reboots.

Example

let mut time = Time()?;
time.system_time()?;
time.set_ta_time()?;
time.ta_time()?;

Errors

  1. TimeNotSet: Time is not set.
  2. TimeNeedsReset: Time needs to be reset.
  3. Overflow: The number of seconds in the TA Persistent Time overflows the range of a u32. The field seconds is still set to the TA Persistent Time truncated to 32 bits.

Panics

  1. If the Implementation detects any error.

Set the persistent time of the current Trusted Application.

Errors

  1. OutOfMemory: If not enough memory is available to complete the operation.
  2. SotrageNoSpace: If insufficient storage space is available to complete the operation.

Panics

  1. If the Implementation detects any error.

Retrieve the current REE system time. The time is as trusted as the REE itself and may also be tampered by the user.

Panics

  1. If the Implementation detects any error.

Trait Implementations

Formats the value using the given formatter. 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

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

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.