pub struct UpdateDidcommResponse {
pub new_version_id: String,
pub prior_mediator_did: String,
pub active_mediator_did: String,
pub active_mediator_endpoint: String,
pub drains_until: String,
pub vta_did: String,
pub serverless: bool,
}Fields§
§new_version_id: String§prior_mediator_did: String§active_mediator_did: String§active_mediator_endpoint: String§drains_until: String§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 UpdateDidcommResponse
impl Clone for UpdateDidcommResponse
Source§fn clone(&self) -> UpdateDidcommResponse
fn clone(&self) -> UpdateDidcommResponse
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 UpdateDidcommResponse
impl Debug for UpdateDidcommResponse
Source§impl<'de> Deserialize<'de> for UpdateDidcommResponse
impl<'de> Deserialize<'de> for UpdateDidcommResponse
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 UpdateDidcommResponse
impl RefUnwindSafe for UpdateDidcommResponse
impl Send for UpdateDidcommResponse
impl Sync for UpdateDidcommResponse
impl Unpin for UpdateDidcommResponse
impl UnsafeUnpin for UpdateDidcommResponse
impl UnwindSafe for UpdateDidcommResponse
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