pub struct TimeSystem {
    pub value: u8,
}
Expand description

uavcan.time.TimeSystem.0.1

Fixed size 1 bytes

Time system enumeration. The time system shall be the same for all masters in the network. It cannot be changed while the network is running.

Fields§

§value: u8

truncated uint4

Always aligned, size 4 bits

Implementations§

source§

impl TimeSystem

source

pub const MONOTONIC_SINCE_BOOT: u8 = 0u8

Monotonic time since boot. Monotonic time is a time reference that doesn’t change rate or make leaps.

source

pub const TAI: u8 = 1u8

International Atomic Time; https://en.wikipedia.org/wiki/International_Atomic_Time. The timestamp value contains the number of microseconds elapsed since 1970-01-01T00:00:00Z TAI. TAI is always a fixed integer number of seconds ahead of GPS time. Systems that use GPS time as a reference should convert that to TAI by adding the fixed difference. GPS time is not supported for reasons of consistency across different positioning systems and applications.

source

pub const APPLICATION_SPECIFIC: u8 = 15u8

Application-specific time system of unknown properties.

Trait Implementations§

source§

impl DataType for TimeSystem

source§

const EXTENT_BYTES: Option<u32> = None

This type is sealed.

source§

impl Deserialize for TimeSystem

source§

fn deserialize(cursor: &mut ReadCursor<'_>) -> Result<Self, DeserializeError>where Self: Sized,

Deserializes a value and returns it
source§

fn deserialize_from_bytes(bytes: &[u8]) -> Result<Self, DeserializeError>where Self: Sized,

A convenience function that creates a cursor around the provided bytes and calls deserialize
source§

impl Serialize for TimeSystem

source§

fn size_bits(&self) -> usize

Returns the size of the encoded form of this value, in bits Read more
source§

fn serialize(&self, cursor: &mut WriteCursor<'_>)

Serializes this value into a buffer Read more
source§

fn serialize_to_bytes(&self, bytes: &mut [u8])

A convenience function that creates a cursor around the provided bytes and calls serialize
source§

impl Message for TimeSystem

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.