pub struct DrainListResponse {
pub entries: Vec<DrainEntry>,
}Expand description
Response body for GET /services/didcomm/drain — the list of
mediators currently in drain state. Empty list is normal.
Fields§
§entries: Vec<DrainEntry>Trait Implementations§
Source§impl Clone for DrainListResponse
impl Clone for DrainListResponse
Source§fn clone(&self) -> DrainListResponse
fn clone(&self) -> DrainListResponse
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 DrainListResponse
impl Debug for DrainListResponse
Source§impl<'de> Deserialize<'de> for DrainListResponse
impl<'de> Deserialize<'de> for DrainListResponse
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
impl Eq for DrainListResponse
Source§impl PartialEq for DrainListResponse
impl PartialEq for DrainListResponse
Source§impl Serialize for DrainListResponse
impl Serialize for DrainListResponse
impl StructuralPartialEq for DrainListResponse
Auto Trait Implementations§
impl Freeze for DrainListResponse
impl RefUnwindSafe for DrainListResponse
impl Send for DrainListResponse
impl Sync for DrainListResponse
impl Unpin for DrainListResponse
impl UnsafeUnpin for DrainListResponse
impl UnwindSafe for DrainListResponse
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