pub struct RelayRequest {
pub request_id: Uuid,
pub profile: String,
pub testing_environment_id: Option<Uuid>,
pub testing_generation: Option<i64>,
pub request: Operation,
}Fields§
§request_id: Uuid§profile: StringLocal profile name, with optional testing environment UUID.
testing_environment_id: Option<Uuid>§testing_generation: Option<i64>Expected sandbox state; the daemon captures its known generation when omitted.
request: OperationTrait Implementations§
Source§impl Clone for RelayRequest
impl Clone for RelayRequest
Source§fn clone(&self) -> RelayRequest
fn clone(&self) -> RelayRequest
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 RelayRequest
impl Debug for RelayRequest
Source§impl<'de> Deserialize<'de> for RelayRequest
impl<'de> Deserialize<'de> for RelayRequest
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 RelayRequest
impl RefUnwindSafe for RelayRequest
impl Send for RelayRequest
impl Sync for RelayRequest
impl Unpin for RelayRequest
impl UnsafeUnpin for RelayRequest
impl UnwindSafe for RelayRequest
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