pub struct StoreComputerCommandRequest {
pub scope: ResourceScope,
pub idempotency_key_hash: String,
pub request_hash: String,
pub command: ComputerCommandResource,
}Expand description
Durable, scope-qualified command creation input owned by the Workspace command repository. Only hashes of caller idempotency material cross the persistence boundary.
Fields§
§scope: ResourceScope§idempotency_key_hash: String§request_hash: String§command: ComputerCommandResourceTrait Implementations§
Source§impl Clone for StoreComputerCommandRequest
impl Clone for StoreComputerCommandRequest
Source§fn clone(&self) -> StoreComputerCommandRequest
fn clone(&self) -> StoreComputerCommandRequest
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 StoreComputerCommandRequest
impl Debug for StoreComputerCommandRequest
impl Eq for StoreComputerCommandRequest
impl StructuralPartialEq for StoreComputerCommandRequest
Auto Trait Implementations§
impl Freeze for StoreComputerCommandRequest
impl RefUnwindSafe for StoreComputerCommandRequest
impl Send for StoreComputerCommandRequest
impl Sync for StoreComputerCommandRequest
impl Unpin for StoreComputerCommandRequest
impl UnsafeUnpin for StoreComputerCommandRequest
impl UnwindSafe for StoreComputerCommandRequest
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