pub struct WindowsSyncRootRegistrationOptions {
pub update_existing: bool,
pub disable_on_demand_population_on_root: bool,
pub mark_in_sync_on_root: bool,
}Expand description
Persistent registration flags independent from windows-rs values.
Fields§
§update_existing: boolUpdate an existing registration instead of creating a new claim.
disable_on_demand_population_on_root: boolDisable on-demand population for the root directory itself.
mark_in_sync_on_root: boolMark the root directory in-sync during registration.
Trait Implementations§
Source§impl Clone for WindowsSyncRootRegistrationOptions
impl Clone for WindowsSyncRootRegistrationOptions
Source§fn clone(&self) -> WindowsSyncRootRegistrationOptions
fn clone(&self) -> WindowsSyncRootRegistrationOptions
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 WindowsSyncRootRegistrationOptions
impl Default for WindowsSyncRootRegistrationOptions
Source§fn default() -> WindowsSyncRootRegistrationOptions
fn default() -> WindowsSyncRootRegistrationOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowsSyncRootRegistrationOptions
impl PartialEq for WindowsSyncRootRegistrationOptions
Source§fn eq(&self, other: &WindowsSyncRootRegistrationOptions) -> bool
fn eq(&self, other: &WindowsSyncRootRegistrationOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindowsSyncRootRegistrationOptions
impl Eq for WindowsSyncRootRegistrationOptions
impl StructuralPartialEq for WindowsSyncRootRegistrationOptions
Auto Trait Implementations§
impl Freeze for WindowsSyncRootRegistrationOptions
impl RefUnwindSafe for WindowsSyncRootRegistrationOptions
impl Send for WindowsSyncRootRegistrationOptions
impl Sync for WindowsSyncRootRegistrationOptions
impl Unpin for WindowsSyncRootRegistrationOptions
impl UnwindSafe for WindowsSyncRootRegistrationOptions
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