pub struct ManagedConfigurationsSettings {
pub last_updated_timestamp_millis: Option<i64>,
pub mcm_id: Option<String>,
pub name: Option<String>,
}Expand description
A managed configurations settings resource contains the set of managed properties that have been configured for an Android app to be applied to a set of users. The app’s developer would have defined configurable properties in the managed configurations schema.
This type is not used in any activity, and only used as part of another schema.
Fields§
§last_updated_timestamp_millis: Option<i64>The last updated time of the managed configuration settings in milliseconds since 1970-01-01T00:00:00Z.
mcm_id: Option<String>The ID of the managed configurations settings.
name: Option<String>The name of the managed configurations settings.
Trait Implementations§
Source§impl Clone for ManagedConfigurationsSettings
impl Clone for ManagedConfigurationsSettings
Source§fn clone(&self) -> ManagedConfigurationsSettings
fn clone(&self) -> ManagedConfigurationsSettings
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 Default for ManagedConfigurationsSettings
impl Default for ManagedConfigurationsSettings
Source§fn default() -> ManagedConfigurationsSettings
fn default() -> ManagedConfigurationsSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManagedConfigurationsSettings
impl<'de> Deserialize<'de> for ManagedConfigurationsSettings
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 ManagedConfigurationsSettings
Auto Trait Implementations§
impl Freeze for ManagedConfigurationsSettings
impl RefUnwindSafe for ManagedConfigurationsSettings
impl Send for ManagedConfigurationsSettings
impl Sync for ManagedConfigurationsSettings
impl Unpin for ManagedConfigurationsSettings
impl UnwindSafe for ManagedConfigurationsSettings
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