Impl Send for GoalRequest
This commit is contained in:
parent
b47caacaec
commit
2babcaa5c6
|
|
@ -1,6 +1,4 @@
|
||||||
use super::*;
|
use super::*;
|
||||||
// use core::pin::Pin;
|
|
||||||
// use futures::prelude::*;
|
|
||||||
use futures::future::{join_all, JoinAll};
|
use futures::future::{join_all, JoinAll};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
|
@ -85,6 +83,8 @@ where
|
||||||
request_id: rmw_request_id_t,
|
request_id: rmw_request_id_t,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe impl<T> Send for GoalRequest<T> where T: WrappedActionTypeSupport {}
|
||||||
|
|
||||||
impl<T: 'static> GoalRequest<T>
|
impl<T: 'static> GoalRequest<T>
|
||||||
where
|
where
|
||||||
T: WrappedActionTypeSupport,
|
T: WrappedActionTypeSupport,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue