pub struct EnrollResponse {
pub status: String,
pub device_id: String,
pub api_key: String,
pub username: String,
pub team: Option<String>,
pub desired_config: Option<Value>,
}Fields§
§status: String§device_id: String§api_key: String§username: String§team: Option<String>§desired_config: Option<Value>Trait Implementations§
Source§impl Debug for EnrollResponse
impl Debug for EnrollResponse
Source§impl<'de> Deserialize<'de> for EnrollResponse
impl<'de> Deserialize<'de> for EnrollResponse
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 Freeze for EnrollResponse
impl RefUnwindSafe for EnrollResponse
impl Send for EnrollResponse
impl Sync for EnrollResponse
impl Unpin for EnrollResponse
impl UnsafeUnpin for EnrollResponse
impl UnwindSafe for EnrollResponse
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