pub struct BatchRespondResult {
pub approval_id: String,
pub status: String,
pub outcome: Option<ApprovalOutcome>,
pub error: Option<String>,
}Fields§
§approval_id: String§status: String§outcome: Option<ApprovalOutcome>§error: Option<String>Trait Implementations§
Source§impl Clone for BatchRespondResult
impl Clone for BatchRespondResult
Source§fn clone(&self) -> BatchRespondResult
fn clone(&self) -> BatchRespondResult
Returns a duplicate of the value. Read more
1.0.0 · 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 BatchRespondResult
impl Debug for BatchRespondResult
Source§impl<'de> Deserialize<'de> for BatchRespondResult
impl<'de> Deserialize<'de> for BatchRespondResult
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 BatchRespondResult
impl RefUnwindSafe for BatchRespondResult
impl Send for BatchRespondResult
impl Sync for BatchRespondResult
impl Unpin for BatchRespondResult
impl UnsafeUnpin for BatchRespondResult
impl UnwindSafe for BatchRespondResult
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