pub struct UpdateDidcommRequest {
pub new_mediator_did: String,
pub drain_ttl_secs: u64,
pub force: bool,
pub handshake_timeout_secs: Option<u64>,
pub rollback: bool,
}Expand description
Request body for POST /services/didcomm/update.
Fields§
§new_mediator_did: String§drain_ttl_secs: u64§force: bool§handshake_timeout_secs: Option<u64>§rollback: boolTag the operation as a rollback in telemetry.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateDidcommRequest
impl Clone for UpdateDidcommRequest
Source§fn clone(&self) -> UpdateDidcommRequest
fn clone(&self) -> UpdateDidcommRequest
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 UpdateDidcommRequest
impl Debug for UpdateDidcommRequest
Source§impl<'de> Deserialize<'de> for UpdateDidcommRequest
impl<'de> Deserialize<'de> for UpdateDidcommRequest
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 UpdateDidcommRequest
impl RefUnwindSafe for UpdateDidcommRequest
impl Send for UpdateDidcommRequest
impl Sync for UpdateDidcommRequest
impl Unpin for UpdateDidcommRequest
impl UnsafeUnpin for UpdateDidcommRequest
impl UnwindSafe for UpdateDidcommRequest
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