pub struct DeviceConnectivityManagement {
pub configure_wifi: Option<String>,
pub tethering_settings: Option<String>,
pub usb_data_access: Option<String>,
pub wifi_direct_settings: Option<String>,
pub wifi_ssid_policy: Option<WifiSsidPolicy>,
}
Expand description
Covers controls for device connectivity such as Wi-Fi, USB data access, keyboard/mouse connections, and more.
This type is not used in any activity, and only used as part of another schema.
Fields§
§configure_wifi: Option<String>
Controls Wi-Fi configuring privileges. Based on the option set, user will have either full or limited or no control in configuring Wi-Fi networks.
tethering_settings: Option<String>
Controls tethering settings. Based on the value set, the user is partially or fully disallowed from using different forms of tethering.
usb_data_access: Option<String>
Controls what files and/or data can be transferred via USB. Supported only on company-owned devices.
wifi_direct_settings: Option<String>
Controls configuring and using Wi-Fi direct settings. Supported on company-owned devices running Android 13 and above.
wifi_ssid_policy: Option<WifiSsidPolicy>
Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this does not affect which networks can be configured on the device. Supported on company-owned devices running Android 13 and above.
Trait Implementations§
Source§impl Clone for DeviceConnectivityManagement
impl Clone for DeviceConnectivityManagement
Source§fn clone(&self) -> DeviceConnectivityManagement
fn clone(&self) -> DeviceConnectivityManagement
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DeviceConnectivityManagement
impl Debug for DeviceConnectivityManagement
Source§impl Default for DeviceConnectivityManagement
impl Default for DeviceConnectivityManagement
Source§fn default() -> DeviceConnectivityManagement
fn default() -> DeviceConnectivityManagement
Source§impl<'de> Deserialize<'de> for DeviceConnectivityManagement
impl<'de> Deserialize<'de> for DeviceConnectivityManagement
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>,
impl Part for DeviceConnectivityManagement
Auto Trait Implementations§
impl Freeze for DeviceConnectivityManagement
impl RefUnwindSafe for DeviceConnectivityManagement
impl Send for DeviceConnectivityManagement
impl Sync for DeviceConnectivityManagement
impl Unpin for DeviceConnectivityManagement
impl UnwindSafe for DeviceConnectivityManagement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more