#[repr(u32)]pub enum PropMode {
Replace = 0,
Prepend = 1,
Append = 2,
}
Variants§
Replace = 0
Discard the previous property value and store the new data.
Prepend = 1
Insert the new data before the beginning of existing data. The format
must
match existing property value. If the property is undefined, it is treated as
defined with the correct type and format with zero-length data.
Append = 2
Insert the new data after the beginning of existing data. The format
must
match existing property value. If the property is undefined, it is treated as
defined with the correct type and format with zero-length data.
Trait Implementations§
source§impl Ord for PropMode
impl Ord for PropMode
source§impl PartialOrd for PropMode
impl PartialOrd for PropMode
impl Copy for PropMode
impl Eq for PropMode
impl StructuralPartialEq for PropMode
Auto Trait Implementations§
impl Freeze for PropMode
impl RefUnwindSafe for PropMode
impl Send for PropMode
impl Sync for PropMode
impl Unpin for PropMode
impl UnwindSafe for PropMode
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)