pub struct WindowsPlaceholderManagementPolicy {
pub create_unrestricted: bool,
pub convert_unrestricted: bool,
pub update_unrestricted: bool,
}Expand description
Permissions granted to non-provider processes while the sync root is active.
Fields§
§create_unrestricted: boolPermit unrestricted placeholder creation.
convert_unrestricted: boolPermit unrestricted conversion to placeholders.
update_unrestricted: boolPermit unrestricted placeholder updates.
Implementations§
Source§impl WindowsPlaceholderManagementPolicy
impl WindowsPlaceholderManagementPolicy
Sourcepub const fn is_unrestricted(self) -> bool
pub const fn is_unrestricted(self) -> bool
Returns whether any integration-gated permission is requested.
Trait Implementations§
Source§impl Clone for WindowsPlaceholderManagementPolicy
impl Clone for WindowsPlaceholderManagementPolicy
Source§fn clone(&self) -> WindowsPlaceholderManagementPolicy
fn clone(&self) -> WindowsPlaceholderManagementPolicy
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 WindowsPlaceholderManagementPolicy
impl Default for WindowsPlaceholderManagementPolicy
Source§fn default() -> WindowsPlaceholderManagementPolicy
fn default() -> WindowsPlaceholderManagementPolicy
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowsPlaceholderManagementPolicy
impl PartialEq for WindowsPlaceholderManagementPolicy
Source§fn eq(&self, other: &WindowsPlaceholderManagementPolicy) -> bool
fn eq(&self, other: &WindowsPlaceholderManagementPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindowsPlaceholderManagementPolicy
impl Eq for WindowsPlaceholderManagementPolicy
impl StructuralPartialEq for WindowsPlaceholderManagementPolicy
Auto Trait Implementations§
impl Freeze for WindowsPlaceholderManagementPolicy
impl RefUnwindSafe for WindowsPlaceholderManagementPolicy
impl Send for WindowsPlaceholderManagementPolicy
impl Sync for WindowsPlaceholderManagementPolicy
impl Unpin for WindowsPlaceholderManagementPolicy
impl UnwindSafe for WindowsPlaceholderManagementPolicy
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