Struct JobsClientContainer
pub struct JobsClientContainer {
mqtt: MqttClient,
subscriber_get_jobs: Subscriber,
subscriber_start_next: Subscriber,
}Expand description
The JobsClientContainer struct is an internal implementation detail that
holds the necessary components for the JobsClient to interact with
the AWS IoT Jobs service through an MQTT client.
This struct is not intended to be used directly, but rather is
encapsulated within the JobsClient struct.
Fields§
§mqtt: MqttClient§subscriber_get_jobs: Subscriber§subscriber_start_next: SubscriberTrait Implementations§
§impl Debug for JobsClientContainer
impl Debug for JobsClientContainer
Auto Trait Implementations§
impl Freeze for JobsClientContainer
impl !RefUnwindSafe for JobsClientContainer
impl Send for JobsClientContainer
impl Sync for JobsClientContainer
impl Unpin for JobsClientContainer
impl !UnwindSafe for JobsClientContainer
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