pub enum Container {
App,
Data,
Group(String),
}Expand description
Identifies a container that iOS stores a particular kind of data in.
Variants§
App
This is the .app bundle itself. Apps cannot write to their app container.
Data
This is a directory that an app can write to and read from.
Group(String)
This is a directory that an app can share with several other apps made by the same developer. Each app in a group can write to and read from this container.
Trait Implementations§
impl Eq for Container
impl StructuralPartialEq for Container
Auto Trait Implementations§
impl Freeze for Container
impl RefUnwindSafe for Container
impl Send for Container
impl Sync for Container
impl Unpin for Container
impl UnwindSafe for Container
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