pub struct ProvisionResponse<'a, T> {
pub configuration: Option<T>,
pub mqtt: MqttBroker<'a>,
}
Expand description
Provision Response Scheme
Fields§
§configuration: Option<T>
User provided configuration
mqtt: MqttBroker<'a>
MQTT configuration
Trait Implementations§
Source§impl<'de: 'a, 'a, T> Deserialize<'de> for ProvisionResponse<'a, T>where
T: Deserialize<'de>,
impl<'de: 'a, 'a, T> Deserialize<'de> for ProvisionResponse<'a, T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a, T> Freeze for ProvisionResponse<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for ProvisionResponse<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for ProvisionResponse<'a, T>where
T: Send,
impl<'a, T> Sync for ProvisionResponse<'a, T>where
T: Sync,
impl<'a, T> Unpin for ProvisionResponse<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for ProvisionResponse<'a, T>where
T: 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