pub struct StopIn {
pub id: Option<String>,
}Fields§
§id: Option<String>ID is the sandbox to interrupt, from an earlier lease. Every command running in it stops; the lease itself survives, so the checkout and the half-written files are still there to read. Use EndIn to give the computer back.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StopIn
impl<'de> Deserialize<'de> for StopIn
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 StructuralPartialEq for StopIn
Auto Trait Implementations§
impl Freeze for StopIn
impl RefUnwindSafe for StopIn
impl Send for StopIn
impl Sync for StopIn
impl Unpin for StopIn
impl UnsafeUnpin for StopIn
impl UnwindSafe for StopIn
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