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 {}
19
19
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
20
20
/// [dropped after][1] the `rcl_client_t`.
21
21
///
22
- /// [1] https://doc.rust-lang.org/reference/destructors.html
22
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
23
23
pub struct ClientHandle {
24
24
rcl_client : Mutex < rcl_client_t > ,
25
25
node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pub struct Node {
72
72
/// dependency on the lifetime of its `rcl_context_t` by ensuring that this
73
73
/// dependency is [dropped after][1] the `rcl_node_t`.
74
74
///
75
- /// [1] https://doc.rust-lang.org/reference/destructors.html
75
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
76
76
pub ( crate ) struct NodeHandle {
77
77
pub ( crate ) rcl_node : Mutex < rcl_node_t > ,
78
78
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 {}
22
22
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
23
23
/// [dropped after][1] the `rcl_publisher_t`.
24
24
///
25
- /// [1] https://doc.rust-lang.org/reference/destructors.html
25
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
26
26
struct PublisherHandle {
27
27
rcl_publisher : Mutex < rcl_publisher_t > ,
28
28
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 {}
17
17
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
18
18
/// [dropped after][1] the `rcl_service_t`.
19
19
///
20
- /// [1] https://doc.rust-lang.org/reference/destructors.html
20
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
21
21
pub struct ServiceHandle {
22
22
rcl_service : Mutex < rcl_service_t > ,
23
23
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 {}
25
25
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
26
26
/// [dropped after][1] the `rcl_subscription_t`.
27
27
///
28
- /// [1] https://doc.rust-lang.org/reference/destructors.html
28
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
29
29
pub struct SubscriptionHandle {
30
30
rcl_subscription : Mutex < rcl_subscription_t > ,
31
31
node_handle : Arc < NodeHandle > ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pub use guard_condition::*;
32
32
/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
33
33
/// `rcl_wait_set_t`.
34
34
///
35
- /// [1] https://doc.rust-lang.org/reference/destructors.html
35
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
36
36
struct WaitSetHandle {
37
37
rcl_wait_set : rcl_wait_set_t ,
38
38
// 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 {
56
56
/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
57
57
/// `rcl_guard_condition_t`.
58
58
///
59
- /// [1] https://doc.rust-lang.org/reference/destructors.html
59
+ /// [1]: < https://doc.rust-lang.org/reference/destructors.html>
60
60
pub ( crate ) struct GuardConditionHandle {
61
61
pub ( crate ) rcl_guard_condition : Mutex < rcl_guard_condition_t > ,
62
62
/// Keep the context alive for the whole lifecycle of the guard condition
You can’t perform that action at this time.
0 commit comments