pub enum ApprovalStateRes {
Accepted,
Rejected,
Obsolete,
}Variants§
Accepted
Request for approval which is in responded status and accepted
Rejected
Request for approval which is in responded status and rejected
Obsolete
The approval entity is obsolete.
Trait Implementations§
Source§impl Clone for ApprovalStateRes
impl Clone for ApprovalStateRes
Source§fn clone(&self) -> ApprovalStateRes
fn clone(&self) -> ApprovalStateRes
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 ApprovalStateRes
impl Debug for ApprovalStateRes
Source§impl<'de> Deserialize<'de> for ApprovalStateRes
impl<'de> Deserialize<'de> for ApprovalStateRes
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
Source§impl Display for ApprovalStateRes
impl Display for ApprovalStateRes
Source§impl PartialEq for ApprovalStateRes
impl PartialEq for ApprovalStateRes
Source§impl Serialize for ApprovalStateRes
impl Serialize for ApprovalStateRes
impl Eq for ApprovalStateRes
impl StructuralPartialEq for ApprovalStateRes
Auto Trait Implementations§
impl Freeze for ApprovalStateRes
impl RefUnwindSafe for ApprovalStateRes
impl Send for ApprovalStateRes
impl Sync for ApprovalStateRes
impl Unpin for ApprovalStateRes
impl UnsafeUnpin for ApprovalStateRes
impl UnwindSafe for ApprovalStateRes
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