#[repr(C)]pub struct controller_manager_msgs__srv__SwitchController_Request {
pub activate_controllers: rosidl_runtime_c__String__Sequence,
pub deactivate_controllers: rosidl_runtime_c__String__Sequence,
pub start_controllers: rosidl_runtime_c__String__Sequence,
pub stop_controllers: rosidl_runtime_c__String__Sequence,
pub strictness: i32,
pub start_asap: bool,
pub activate_asap: bool,
pub timeout: builtin_interfaces__msg__Duration,
}Fields§
§activate_controllers: rosidl_runtime_c__String__Sequence§deactivate_controllers: rosidl_runtime_c__String__Sequence§start_controllers: rosidl_runtime_c__String__Sequence§stop_controllers: rosidl_runtime_c__String__Sequence§strictness: i32§start_asap: bool§activate_asap: bool§timeout: builtin_interfaces__msg__DurationAuto Trait Implementations§
impl Freeze for controller_manager_msgs__srv__SwitchController_Request
impl RefUnwindSafe for controller_manager_msgs__srv__SwitchController_Request
impl !Send for controller_manager_msgs__srv__SwitchController_Request
impl !Sync for controller_manager_msgs__srv__SwitchController_Request
impl Unpin for controller_manager_msgs__srv__SwitchController_Request
impl UnwindSafe for controller_manager_msgs__srv__SwitchController_Request
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more