Struct DepersonalizeInfo
#[repr(C)]pub struct DepersonalizeInfo {
pub feature_type: PersoFeature,
pub operation: PersoOperation,
pub ctrl_key_value_len: u32,
pub ctrl_key_value: [c_char; 16],
}Expand description
Deactivates or unblocks the personalization on the phone.
Each feature can be deactivated/unblocked independently of the other features.
Fields§
§feature_type: PersoFeatureIndicates the personalization feature to deactivate or unblock.
operation: PersoOperationIndicates the operation to perform.
ctrl_key_value_len: u32Must be set to the number of elements in ctrl_key_value.
ctrl_key_value: [c_char; 16]Control key value. This value is a sequence of ASCII characters.
Auto Trait Implementations§
impl Freeze for DepersonalizeInfo
impl RefUnwindSafe for DepersonalizeInfo
impl Send for DepersonalizeInfo
impl Sync for DepersonalizeInfo
impl Unpin for DepersonalizeInfo
impl UnwindSafe for DepersonalizeInfo
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