pub struct ManagedConfiguration {
pub configuration_variables: Option<ConfigurationVariables>,
pub kind: Option<String>,
pub managed_property: Option<Vec<ManagedProperty>>,
pub product_id: Option<String>,
}Expand description
Deprecated: New integrations cannot use this method and can refer to our new recommendations
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get managedconfigurationsfordevice (response)
- update managedconfigurationsfordevice (request|response)
- get managedconfigurationsforuser (response)
- update managedconfigurationsforuser (request|response)
Fields§
§configuration_variables: Option<ConfigurationVariables>Contains the ID of the managed configuration profile and the set of configuration variables (if any) defined for the user.
kind: Option<String>Deprecated.
managed_property: Option<Vec<ManagedProperty>>The set of managed properties for this configuration.
product_id: Option<String>The ID of the product that the managed configuration is for, e.g. “app:com.google.android.gm”.
Trait Implementations§
Source§impl Clone for ManagedConfiguration
impl Clone for ManagedConfiguration
Source§fn clone(&self) -> ManagedConfiguration
fn clone(&self) -> ManagedConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ManagedConfiguration
impl Debug for ManagedConfiguration
Source§impl Default for ManagedConfiguration
impl Default for ManagedConfiguration
Source§fn default() -> ManagedConfiguration
fn default() -> ManagedConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManagedConfiguration
impl<'de> Deserialize<'de> for ManagedConfiguration
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
Source§impl Serialize for ManagedConfiguration
impl Serialize for ManagedConfiguration
impl RequestValue for ManagedConfiguration
impl ResponseResult for ManagedConfiguration
Auto Trait Implementations§
impl Freeze for ManagedConfiguration
impl RefUnwindSafe for ManagedConfiguration
impl Send for ManagedConfiguration
impl Sync for ManagedConfiguration
impl Unpin for ManagedConfiguration
impl UnwindSafe for ManagedConfiguration
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