pub struct OpenSandboxResponse {
pub id: String,
pub status: String,
pub endpoint_url: Option<String>,
pub created_at: String,
pub labels: HashMap<String, String>,
}Fields§
§id: String§status: String§endpoint_url: Option<String>§created_at: String§labels: HashMap<String, String>Trait Implementations§
Source§impl Clone for OpenSandboxResponse
impl Clone for OpenSandboxResponse
Source§fn clone(&self) -> OpenSandboxResponse
fn clone(&self) -> OpenSandboxResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 OpenSandboxResponse
impl Debug for OpenSandboxResponse
Source§impl<'de> Deserialize<'de> for OpenSandboxResponse
impl<'de> Deserialize<'de> for OpenSandboxResponse
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
Auto Trait Implementations§
impl Freeze for OpenSandboxResponse
impl RefUnwindSafe for OpenSandboxResponse
impl Send for OpenSandboxResponse
impl Sync for OpenSandboxResponse
impl Unpin for OpenSandboxResponse
impl UnsafeUnpin for OpenSandboxResponse
impl UnwindSafe for OpenSandboxResponse
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