pub struct SandboxRecord {Show 13 fields
pub id: String,
pub scope: ResourceScope,
pub provider_ref: ProviderResourceRef,
pub placement: SandboxPlacement,
pub lifecycle: SandboxLifecycle,
pub owners: Vec<OwnerRef>,
pub access_delegation_id: Option<String>,
pub capabilities: ProviderCapabilities,
pub mounts: Vec<SandboxMountRecord>,
pub expires_at_ms: u64,
pub version: u64,
pub created_at_ms: u64,
pub updated_at_ms: u64,
}Fields§
§id: String§scope: ResourceScope§provider_ref: ProviderResourceRef§placement: SandboxPlacement§lifecycle: SandboxLifecycle§owners: Vec<OwnerRef>§access_delegation_id: Option<String>§capabilities: ProviderCapabilities§mounts: Vec<SandboxMountRecord>§expires_at_ms: u64§version: u64§created_at_ms: u64§updated_at_ms: u64Trait Implementations§
Source§impl Clone for SandboxRecord
impl Clone for SandboxRecord
Source§fn clone(&self) -> SandboxRecord
fn clone(&self) -> SandboxRecord
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 SandboxRecord
impl Debug for SandboxRecord
Source§impl<'de> Deserialize<'de> for SandboxRecord
impl<'de> Deserialize<'de> for SandboxRecord
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 SandboxRecord
Source§impl From<SandboxRecord> for SandboxResource
impl From<SandboxRecord> for SandboxResource
Source§fn from(record: SandboxRecord) -> Self
fn from(record: SandboxRecord) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SandboxRecord
impl PartialEq for SandboxRecord
Source§impl Serialize for SandboxRecord
impl Serialize for SandboxRecord
impl StructuralPartialEq for SandboxRecord
Auto Trait Implementations§
impl Freeze for SandboxRecord
impl RefUnwindSafe for SandboxRecord
impl Send for SandboxRecord
impl Sync for SandboxRecord
impl Unpin for SandboxRecord
impl UnsafeUnpin for SandboxRecord
impl UnwindSafe for SandboxRecord
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