pub struct WindowsPlaceholderOptions {
pub mark_in_sync: bool,
pub disable_on_demand_population: bool,
pub always_full: bool,
pub supersede: bool,
}Expand description
CFAPI placeholder creation options kept independent from windows-rs types.
Fields§
§mark_in_sync: boolMark the placeholder in-sync during creation.
disable_on_demand_population: boolDisable on-demand directory population for this placeholder.
always_full: boolRequire the placeholder to remain fully hydrated.
supersede: boolReplace an existing placeholder with the same relative name.
Trait Implementations§
Source§impl Clone for WindowsPlaceholderOptions
impl Clone for WindowsPlaceholderOptions
Source§fn clone(&self) -> WindowsPlaceholderOptions
fn clone(&self) -> WindowsPlaceholderOptions
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 Debug for WindowsPlaceholderOptions
impl Debug for WindowsPlaceholderOptions
Source§impl Default for WindowsPlaceholderOptions
impl Default for WindowsPlaceholderOptions
Source§fn default() -> WindowsPlaceholderOptions
fn default() -> WindowsPlaceholderOptions
Returns the “default value” for a type. Read more
impl Copy for WindowsPlaceholderOptions
impl Eq for WindowsPlaceholderOptions
impl StructuralPartialEq for WindowsPlaceholderOptions
Auto Trait Implementations§
impl Freeze for WindowsPlaceholderOptions
impl RefUnwindSafe for WindowsPlaceholderOptions
impl Send for WindowsPlaceholderOptions
impl Sync for WindowsPlaceholderOptions
impl Unpin for WindowsPlaceholderOptions
impl UnwindSafe for WindowsPlaceholderOptions
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