rosrustext_rosrs 0.1.0

rclrs adapter for rosrustext lifecycle semantics (dev_ws only)
1
2
3
4
5
6
7
8
9
10
/// Timer wrapper whose existence keeps the timer alive.
pub struct ManagedTimer {
    _inner: rclrs::Timer,
}

impl ManagedTimer {
    pub(crate) fn new(inner: rclrs::Timer) -> Self {
        Self { _inner: inner }
    }
}