pub enum CliEnvironmentAccessMode {
ReadOnly,
ReadWrite,
}Expand description
CLI-private access mode for one configured environment mount.
Variants§
ReadOnly
Permit reads but reject writes and process execution.
ReadWrite
Permit reads, writes, and process execution allowed by the provider policy.
Trait Implementations§
Source§impl Clone for EnvironmentAttachmentAccessMode
impl Clone for EnvironmentAttachmentAccessMode
Source§fn clone(&self) -> EnvironmentAttachmentAccessMode
fn clone(&self) -> EnvironmentAttachmentAccessMode
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 moreimpl Copy for EnvironmentAttachmentAccessMode
Source§impl Default for EnvironmentAttachmentAccessMode
impl Default for EnvironmentAttachmentAccessMode
Source§fn default() -> EnvironmentAttachmentAccessMode
fn default() -> EnvironmentAttachmentAccessMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentAttachmentAccessMode
impl<'de> Deserialize<'de> for EnvironmentAttachmentAccessMode
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
impl Eq for EnvironmentAttachmentAccessMode
impl StructuralPartialEq for EnvironmentAttachmentAccessMode
Auto Trait Implementations§
impl Freeze for EnvironmentAttachmentAccessMode
impl RefUnwindSafe for EnvironmentAttachmentAccessMode
impl Send for EnvironmentAttachmentAccessMode
impl Sync for EnvironmentAttachmentAccessMode
impl Unpin for EnvironmentAttachmentAccessMode
impl UnsafeUnpin for EnvironmentAttachmentAccessMode
impl UnwindSafe for EnvironmentAttachmentAccessMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.