NSPropertyListReadOptions

Type Alias NSPropertyListReadOptions 

Source
pub type NSPropertyListReadOptions = NSPropertyListMutabilityOptions;
Expand description

The only read options supported are described in NSPropertyListMutabilityOptions.

Aliased Type§

#[repr(u64)]
pub enum NSPropertyListReadOptions { Immutable = 0, MutableContainers = 1, MutableContainersAndLeaves = 2, }

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.