pub struct AuthInstallServiceResponse {
pub contract_digest: String,
pub contract_id: String,
pub resource_bindings: ResourceBindings,
pub session_key: String,
pub success: bool,
}Expand description
Response payload for Auth.InstallService.
Fields§
§contract_digest: String§contract_id: String§resource_bindings: ResourceBindings§session_key: String§success: boolTrait Implementations§
Source§impl Clone for AuthInstallServiceResponse
impl Clone for AuthInstallServiceResponse
Source§fn clone(&self) -> AuthInstallServiceResponse
fn clone(&self) -> AuthInstallServiceResponse
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 AuthInstallServiceResponse
impl Debug for AuthInstallServiceResponse
Source§impl<'de> Deserialize<'de> for AuthInstallServiceResponse
impl<'de> Deserialize<'de> for AuthInstallServiceResponse
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 AuthInstallServiceResponse
Auto Trait Implementations§
impl Freeze for AuthInstallServiceResponse
impl RefUnwindSafe for AuthInstallServiceResponse
impl Send for AuthInstallServiceResponse
impl Sync for AuthInstallServiceResponse
impl Unpin for AuthInstallServiceResponse
impl UnsafeUnpin for AuthInstallServiceResponse
impl UnwindSafe for AuthInstallServiceResponse
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