pub enum TpmResponseOutcome<'a> {
Dispatched(TpmResponseView<'a>),
Rejected(TpmRc),
}Expand description
The outcome of borrowed response dispatch.
Variants§
Dispatched(TpmResponseView<'a>)
A successful response, carrying the selected borrowed view.
Rejected(TpmRc)
A well-formed response carrying a non-success response code.
Auto Trait Implementations§
impl<'a> Freeze for TpmResponseOutcome<'a>
impl<'a> RefUnwindSafe for TpmResponseOutcome<'a>
impl<'a> Send for TpmResponseOutcome<'a>
impl<'a> Sync for TpmResponseOutcome<'a>
impl<'a> Unpin for TpmResponseOutcome<'a>
impl<'a> UnsafeUnpin for TpmResponseOutcome<'a>
impl<'a> UnwindSafe for TpmResponseOutcome<'a>
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