pub struct EnableDidcommResponse {
pub new_version_id: String,
pub mediator_did: String,
pub mediator_endpoint: String,
pub vta_did: String,
pub serverless: bool,
}Fields§
§new_version_id: String§mediator_did: String§mediator_endpoint: String§vta_did: StringThe VTA’s own DID — subject of the LogEntry this enable
wrote. Carried so the CLI can print follow-up commands like
pnm webvh did-log <vta_did> for serverless deployments.
#[serde(default)] + elide-when-empty keeps the wire form
back-compat with older servers.
serverless: boolTrue when the VTA’s DID is self-hosted (server_id = "serverless"). The new LogEntry is local only — operators
must fetch the updated did.jsonl and redeploy.
#[serde(default)] for back-compat.
Trait Implementations§
Source§impl Clone for EnableDidcommResponse
impl Clone for EnableDidcommResponse
Source§fn clone(&self) -> EnableDidcommResponse
fn clone(&self) -> EnableDidcommResponse
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 EnableDidcommResponse
impl Debug for EnableDidcommResponse
Source§impl<'de> Deserialize<'de> for EnableDidcommResponse
impl<'de> Deserialize<'de> for EnableDidcommResponse
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 EnableDidcommResponse
impl RefUnwindSafe for EnableDidcommResponse
impl Send for EnableDidcommResponse
impl Sync for EnableDidcommResponse
impl Unpin for EnableDidcommResponse
impl UnsafeUnpin for EnableDidcommResponse
impl UnwindSafe for EnableDidcommResponse
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