pub enum RuntimeMountSource {
Artifact {
artifact: ArtifactRef,
},
Volume {
volume_id: String,
},
Tmpfs {
size_bytes: u64,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeMountSource
impl Clone for RuntimeMountSource
Source§fn clone(&self) -> RuntimeMountSource
fn clone(&self) -> RuntimeMountSource
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 RuntimeMountSource
impl Debug for RuntimeMountSource
Source§impl<'de> Deserialize<'de> for RuntimeMountSource
impl<'de> Deserialize<'de> for RuntimeMountSource
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 RuntimeMountSource
Source§impl PartialEq for RuntimeMountSource
impl PartialEq for RuntimeMountSource
Source§impl Serialize for RuntimeMountSource
impl Serialize for RuntimeMountSource
impl StructuralPartialEq for RuntimeMountSource
Auto Trait Implementations§
impl Freeze for RuntimeMountSource
impl RefUnwindSafe for RuntimeMountSource
impl Send for RuntimeMountSource
impl Sync for RuntimeMountSource
impl Unpin for RuntimeMountSource
impl UnsafeUnpin for RuntimeMountSource
impl UnwindSafe for RuntimeMountSource
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