pub struct EnableDidcommRequest {
pub mediator_did: String,
pub force: bool,
pub handshake_timeout_secs: Option<u64>,
}Expand description
Request body for POST /services/didcomm/enable.
Fields§
§mediator_did: String§force: boolSkip handshake steps 2-5 (DID resolution always runs).
Emits a MediatorHandshakeBypassed telemetry event when set.
handshake_timeout_secs: Option<u64>Trust-ping round-trip timeout (default: 10 seconds).
Implementations§
Trait Implementations§
Source§impl Clone for EnableDidcommRequest
impl Clone for EnableDidcommRequest
Source§fn clone(&self) -> EnableDidcommRequest
fn clone(&self) -> EnableDidcommRequest
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 EnableDidcommRequest
impl Debug for EnableDidcommRequest
Source§impl<'de> Deserialize<'de> for EnableDidcommRequest
impl<'de> Deserialize<'de> for EnableDidcommRequest
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 EnableDidcommRequest
impl RefUnwindSafe for EnableDidcommRequest
impl Send for EnableDidcommRequest
impl Sync for EnableDidcommRequest
impl Unpin for EnableDidcommRequest
impl UnsafeUnpin for EnableDidcommRequest
impl UnwindSafe for EnableDidcommRequest
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