some minor adaptions
This commit is contained in:
parent
4b5b11486e
commit
294ae2cf52
@ -1,3 +1,4 @@
|
|||||||
//! # Hardware Abstraction Layer module
|
//! # Hardware Abstraction Layer module
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
|
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
|
||||||
pub mod host;
|
pub mod host;
|
||||||
|
@ -32,8 +32,9 @@ impl<E> From<ByteConversionError> for EcssTmError<E> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Generic trait for a user supplied sender object. This sender object is responsible for sending
|
/// Generic trait for a user supplied sender object.
|
||||||
/// telemetry to a TM sink. The [Downcast] trait
|
///
|
||||||
|
/// This sender object is responsible for sending telemetry to a TM sink. The [Downcast] trait
|
||||||
/// is implemented to allow passing the sender as a boxed trait object and still retrieve the
|
/// is implemented to allow passing the sender as a boxed trait object and still retrieve the
|
||||||
/// concrete type at a later point.
|
/// concrete type at a later point.
|
||||||
pub trait EcssTmSender<E>: Downcast + Send {
|
pub trait EcssTmSender<E>: Downcast + Send {
|
||||||
|
Loading…
Reference in New Issue
Block a user