File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ unsafe impl Send for rcl_client_t {}
1919/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2020/// [dropped after][1] the `rcl_client_t`.
2121///
22- /// [1] https://doc.rust-lang.org/reference/destructors.html
22+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
2323pub struct ClientHandle {
2424 rcl_client : Mutex < rcl_client_t > ,
2525 node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pub struct Node {
7272/// dependency on the lifetime of its `rcl_context_t` by ensuring that this
7373/// dependency is [dropped after][1] the `rcl_node_t`.
7474///
75- /// [1] https://doc.rust-lang.org/reference/destructors.html
75+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
7676pub ( crate ) struct NodeHandle {
7777 pub ( crate ) rcl_node : Mutex < rcl_node_t > ,
7878 pub ( crate ) context_handle : Arc < ContextHandle > ,
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ unsafe impl Send for rcl_publisher_t {}
2222/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2323/// [dropped after][1] the `rcl_publisher_t`.
2424///
25- /// [1] https://doc.rust-lang.org/reference/destructors.html
25+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
2626struct PublisherHandle {
2727 rcl_publisher : Mutex < rcl_publisher_t > ,
2828 node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ unsafe impl Send for rcl_service_t {}
1717/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
1818/// [dropped after][1] the `rcl_service_t`.
1919///
20- /// [1] https://doc.rust-lang.org/reference/destructors.html
20+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
2121pub struct ServiceHandle {
2222 rcl_service : Mutex < rcl_service_t > ,
2323 node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ unsafe impl Send for rcl_subscription_t {}
2525/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2626/// [dropped after][1] the `rcl_subscription_t`.
2727///
28- /// [1] https://doc.rust-lang.org/reference/destructors.html
28+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
2929pub struct SubscriptionHandle {
3030 rcl_subscription : Mutex < rcl_subscription_t > ,
3131 node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pub use guard_condition::*;
3232/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
3333/// `rcl_wait_set_t`.
3434///
35- /// [1] https://doc.rust-lang.org/reference/destructors.html
35+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
3636struct WaitSetHandle {
3737 rcl_wait_set : rcl_wait_set_t ,
3838 // Used to ensure the context is alive while the wait set is alive.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ pub struct GuardCondition {
5656/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
5757/// `rcl_guard_condition_t`.
5858///
59- /// [1] https://doc.rust-lang.org/reference/destructors.html
59+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
6060pub ( crate ) struct GuardConditionHandle {
6161 pub ( crate ) rcl_guard_condition : Mutex < rcl_guard_condition_t > ,
6262 /// Keep the context alive for the whole lifecycle of the guard condition
You can’t perform that action at this time.
0 commit comments