#[repr(u64)]pub enum NSPropertyListMutabilityOptions {
Immutable = 0,
MutableContainers = 1,
MutableContainersAndLeaves = 2,
}
Expand description
These constants specify mutability options in property lists.
Variants§
Immutable = 0
Causes the returned property list to contain immutable objects.
MutableContainers = 1
Causes the returned property list to have mutable containers but immutable leaves.
MutableContainersAndLeaves = 2
Causes the returned property list to have mutable containers and leaves.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSPropertyListMutabilityOptions
impl RefUnwindSafe for NSPropertyListMutabilityOptions
impl Send for NSPropertyListMutabilityOptions
impl Sync for NSPropertyListMutabilityOptions
impl Unpin for NSPropertyListMutabilityOptions
impl UnwindSafe for NSPropertyListMutabilityOptions
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