pub struct SandboxView {
pub sandbox: String,
pub snapshot: Option<String>,
pub state: Option<String>,
pub runtime_identity_id: Option<String>,
pub binding_id: Option<String>,
}Fields§
§sandbox: String§snapshot: Option<String>§state: Option<String>§runtime_identity_id: Option<String>§binding_id: Option<String>Trait Implementations§
Source§impl Clone for SandboxView
impl Clone for SandboxView
Source§fn clone(&self) -> SandboxView
fn clone(&self) -> SandboxView
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 SandboxView
impl Debug for SandboxView
Source§impl Default for SandboxView
impl Default for SandboxView
Source§fn default() -> SandboxView
fn default() -> SandboxView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SandboxView
impl<'de> Deserialize<'de> for SandboxView
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 SandboxView
Source§impl PartialEq for SandboxView
impl PartialEq for SandboxView
Source§impl Serialize for SandboxView
impl Serialize for SandboxView
impl StructuralPartialEq for SandboxView
Auto Trait Implementations§
impl Freeze for SandboxView
impl RefUnwindSafe for SandboxView
impl Send for SandboxView
impl Sync for SandboxView
impl Unpin for SandboxView
impl UnsafeUnpin for SandboxView
impl UnwindSafe for SandboxView
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