pub struct AuthorizationConfigReq {
pub authorization_type: String,
pub public_key: String,
}
Expand description
Authorization Configuration Scheme.
Fields§
Type of authorization by the end device.
public_key: String
The key that will be used to validate the JWT token made by the device.
Trait Implementations§
Source§impl Debug for AuthorizationConfigReq
impl Debug for AuthorizationConfigReq
Auto Trait Implementations§
impl Freeze for AuthorizationConfigReq
impl RefUnwindSafe for AuthorizationConfigReq
impl Send for AuthorizationConfigReq
impl Sync for AuthorizationConfigReq
impl Unpin for AuthorizationConfigReq
impl UnwindSafe for AuthorizationConfigReq
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