pub struct LabInfo {
pub name: Option<String>,
pub region_code: Option<String>,
}Expand description
Lab specific information for a device.
This type is not used in any activity, and only used as part of another schema.
Fields§
§name: Option<String>Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab.
region_code: Option<String>The Unicode country/region code (CLDR) of the lab where the device is hosted. E.g. “US” for United States, “CH” for Switzerland.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LabInfo
impl<'de> Deserialize<'de> for LabInfo
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
impl Part for LabInfo
Auto Trait Implementations§
impl Freeze for LabInfo
impl RefUnwindSafe for LabInfo
impl Send for LabInfo
impl Sync for LabInfo
impl Unpin for LabInfo
impl UnwindSafe for LabInfo
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