pub struct ApprovalEntry {
pub request: ApprovalReq,
pub state: ApprovalState,
}Expand description
Approval entry combining the request details and its current state.
Fields§
§request: ApprovalReqThe approval request details
state: ApprovalStateCurrent state of the approval
Trait Implementations§
Source§impl Clone for ApprovalEntry
impl Clone for ApprovalEntry
Source§fn clone(&self) -> ApprovalEntry
fn clone(&self) -> ApprovalEntry
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 ApprovalEntry
impl Debug for ApprovalEntry
Source§impl<'de> Deserialize<'de> for ApprovalEntry
impl<'de> Deserialize<'de> for ApprovalEntry
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 ApprovalEntry
impl RefUnwindSafe for ApprovalEntry
impl Send for ApprovalEntry
impl Sync for ApprovalEntry
impl Unpin for ApprovalEntry
impl UnsafeUnpin for ApprovalEntry
impl UnwindSafe for ApprovalEntry
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