pub struct RetrieveKeyResponseFallible {
pub keys: Vec<Result<RetrievedKey, String>>,
}
Expand description
Response to a RetrieveKeyRequest with per-key error handling
Fields§
§keys: Vec<Result<RetrievedKey, String>>
Trait Implementations§
Source§impl Debug for RetrieveKeyResponseFallible
impl Debug for RetrieveKeyResponseFallible
Source§impl<'de> Deserialize<'de> for RetrieveKeyResponseFallible
impl<'de> Deserialize<'de> for RetrieveKeyResponseFallible
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 ViturResponse for RetrieveKeyResponseFallible
Auto Trait Implementations§
impl Freeze for RetrieveKeyResponseFallible
impl RefUnwindSafe for RetrieveKeyResponseFallible
impl Send for RetrieveKeyResponseFallible
impl Sync for RetrieveKeyResponseFallible
impl Unpin for RetrieveKeyResponseFallible
impl UnwindSafe for RetrieveKeyResponseFallible
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