pub struct ProviderConfigMount {
pub source: PathBuf,
pub dest: PathBuf,
pub read_only: bool,
}Expand description
Provider CLI credential/config bind mount under the sandbox home.
Fields§
§source: PathBufSource path on the host.
dest: PathBufDestination path inside the container home.
read_only: boolWhether the provider config is mounted read-only.
Trait Implementations§
Source§impl Clone for ProviderConfigMount
impl Clone for ProviderConfigMount
Source§fn clone(&self) -> ProviderConfigMount
fn clone(&self) -> ProviderConfigMount
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 moreAuto Trait Implementations§
impl Freeze for ProviderConfigMount
impl RefUnwindSafe for ProviderConfigMount
impl Send for ProviderConfigMount
impl Sync for ProviderConfigMount
impl Unpin for ProviderConfigMount
impl UnsafeUnpin for ProviderConfigMount
impl UnwindSafe for ProviderConfigMount
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