pub struct WindowsSyncRootConnectOptions {
pub require_process_info: bool,
pub require_full_file_path: bool,
pub block_self_implicit_hydration: bool,
}Expand description
Additional callback metadata and implicit-hydration behavior requested at connect time.
Fields§
§require_process_info: boolAsk CFAPI to populate owned process metadata in callback snapshots.
require_full_file_path: boolAsk CFAPI to provide a full normalized placeholder path.
block_self_implicit_hydration: boolBlock provider-originated implicit hydration before a callback is generated.
Trait Implementations§
Source§impl Clone for WindowsSyncRootConnectOptions
impl Clone for WindowsSyncRootConnectOptions
Source§fn clone(&self) -> WindowsSyncRootConnectOptions
fn clone(&self) -> WindowsSyncRootConnectOptions
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 WindowsSyncRootConnectOptions
impl Default for WindowsSyncRootConnectOptions
Source§fn default() -> WindowsSyncRootConnectOptions
fn default() -> WindowsSyncRootConnectOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowsSyncRootConnectOptions
impl PartialEq for WindowsSyncRootConnectOptions
Source§fn eq(&self, other: &WindowsSyncRootConnectOptions) -> bool
fn eq(&self, other: &WindowsSyncRootConnectOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindowsSyncRootConnectOptions
impl Eq for WindowsSyncRootConnectOptions
impl StructuralPartialEq for WindowsSyncRootConnectOptions
Auto Trait Implementations§
impl Freeze for WindowsSyncRootConnectOptions
impl RefUnwindSafe for WindowsSyncRootConnectOptions
impl Send for WindowsSyncRootConnectOptions
impl Sync for WindowsSyncRootConnectOptions
impl Unpin for WindowsSyncRootConnectOptions
impl UnwindSafe for WindowsSyncRootConnectOptions
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