pub enum TimestampConversionError {
Invalid,
Infinite,
}
Expand description
Failure to convert DDS/RTPS Timestamp (Time_t
) to ROSTime
.
See DDS Specification v1.4 Sections “2.3.2 PIM to PSM Mapping Rules”
and “2.3.3 DCPS PSM : IDL” for DDS Time_t
type definitions and RTPS
Specification v2.5 Section “8.3.2 Type Definitions” for RTPS view of
Time_t
.
Variants§
Auto Trait Implementations§
impl Freeze for TimestampConversionError
impl RefUnwindSafe for TimestampConversionError
impl Send for TimestampConversionError
impl Sync for TimestampConversionError
impl Unpin for TimestampConversionError
impl UnwindSafe for TimestampConversionError
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