pub struct ActionClient<A: RosAction> {
pub name: &'static str,
/* private fields */
}Expand description
Action client handle (type-level marker)
This is a lightweight handle for tracking an action client.
The actual implementation is in nros-node.
Fields§
§name: &'static strAction name (e.g., “/fibonacci”)
Implementations§
Source§impl<A: RosAction> ActionClient<A>
impl<A: RosAction> ActionClient<A>
Auto Trait Implementations§
impl<A> Freeze for ActionClient<A>
impl<A> RefUnwindSafe for ActionClient<A>where
A: RefUnwindSafe,
impl<A> Send for ActionClient<A>where
A: Send,
impl<A> Sync for ActionClient<A>where
A: Sync,
impl<A> Unpin for ActionClient<A>where
A: Unpin,
impl<A> UnsafeUnpin for ActionClient<A>
impl<A> UnwindSafe for ActionClient<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more