pub struct StorageConfig {
pub driver: String,
pub root: PathBuf,
pub run_root: PathBuf,
pub image_stores: Vec<PathBuf>,
pub layer_stores: Vec<AdditionalLayerStore>,
}Expand description
Storage configuration, typically parsed from storage.conf files.
Configuration files are searched in:
/etc/containers/storage.conf$HOME/.config/containers/storage.conf
Fields§
§driver: StringStorage driver name (should be “overlay” for this library).
root: PathBufPrimary storage root path.
run_root: PathBufRuntime root for transient data.
image_stores: Vec<PathBuf>Additional read-only image stores.
layer_stores: Vec<AdditionalLayerStore>Additional layer stores configuration.
Implementations§
Trait Implementations§
Source§impl Clone for StorageConfig
impl Clone for StorageConfig
Source§fn clone(&self) -> StorageConfig
fn clone(&self) -> StorageConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StorageConfig
impl Debug for StorageConfig
Source§impl<'de> Deserialize<'de> for StorageConfig
impl<'de> Deserialize<'de> for StorageConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StorageConfig
impl RefUnwindSafe for StorageConfig
impl Send for StorageConfig
impl Sync for StorageConfig
impl Unpin for StorageConfig
impl UnsafeUnpin for StorageConfig
impl UnwindSafe for StorageConfig
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