pub struct DisableDidcommResponse {
pub new_version_id: String,
pub prior_mediator_did: String,
pub drains_until: Option<String>,
pub vta_did: String,
pub serverless: bool,
}Fields§
§new_version_id: String§prior_mediator_did: String§drains_until: Option<String>Some(rfc3339) when the listener entered drain state;
None when it was torn down immediately.
vta_did: StringThe VTA’s own DID. See EnableDidcommResponse::vta_did.
serverless: boolTrue when the VTA’s DID is self-hosted. See
EnableDidcommResponse::serverless.
Trait Implementations§
Source§impl Clone for DisableDidcommResponse
impl Clone for DisableDidcommResponse
Source§fn clone(&self) -> DisableDidcommResponse
fn clone(&self) -> DisableDidcommResponse
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 DisableDidcommResponse
impl Debug for DisableDidcommResponse
Source§impl<'de> Deserialize<'de> for DisableDidcommResponse
impl<'de> Deserialize<'de> for DisableDidcommResponse
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 DisableDidcommResponse
impl RefUnwindSafe for DisableDidcommResponse
impl Send for DisableDidcommResponse
impl Sync for DisableDidcommResponse
impl Unpin for DisableDidcommResponse
impl UnsafeUnpin for DisableDidcommResponse
impl UnwindSafe for DisableDidcommResponse
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