pub struct AuthRemoteResponse {
pub schema: String,
pub status: String,
pub nonce: String,
pub expires_at_ms: u64,
pub payload_hex: String,
}Expand description
Sealed remote storage operation response.
Fields§
§schema: StringProtocol schema.
status: StringControlled response status.
nonce: StringRequest nonce echoed by the service.
expires_at_ms: u64Expiry timestamp in Unix milliseconds.
payload_hex: StringHex-encoded opaque payload.
Trait Implementations§
Source§impl Clone for AuthRemoteResponse
impl Clone for AuthRemoteResponse
Source§fn clone(&self) -> AuthRemoteResponse
fn clone(&self) -> AuthRemoteResponse
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 AuthRemoteResponse
impl Debug for AuthRemoteResponse
Source§impl<'de> Deserialize<'de> for AuthRemoteResponse
impl<'de> Deserialize<'de> for AuthRemoteResponse
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 AuthRemoteResponse
Source§impl PartialEq for AuthRemoteResponse
impl PartialEq for AuthRemoteResponse
Source§impl Serialize for AuthRemoteResponse
impl Serialize for AuthRemoteResponse
impl StructuralPartialEq for AuthRemoteResponse
Auto Trait Implementations§
impl Freeze for AuthRemoteResponse
impl RefUnwindSafe for AuthRemoteResponse
impl Send for AuthRemoteResponse
impl Sync for AuthRemoteResponse
impl Unpin for AuthRemoteResponse
impl UnsafeUnpin for AuthRemoteResponse
impl UnwindSafe for AuthRemoteResponse
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