pub enum DisputeResolution {
ReleaseToProvider,
RefundToPoster,
}Expand description
Outcome of an arbitrated task dispute.
Variants§
ReleaseToProvider
Escrow released to the assignee (provider wins).
RefundToPoster
Escrow refunded to the poster (poster wins).
Trait Implementations§
Source§impl Clone for DisputeResolution
impl Clone for DisputeResolution
Source§fn clone(&self) -> DisputeResolution
fn clone(&self) -> DisputeResolution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DisputeResolution
impl Debug for DisputeResolution
Source§impl<'de> Deserialize<'de> for DisputeResolution
impl<'de> Deserialize<'de> for DisputeResolution
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 Eq for DisputeResolution
Source§impl PartialEq for DisputeResolution
impl PartialEq for DisputeResolution
Source§fn eq(&self, other: &DisputeResolution) -> bool
fn eq(&self, other: &DisputeResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DisputeResolution
impl Serialize for DisputeResolution
impl StructuralPartialEq for DisputeResolution
Auto Trait Implementations§
impl Freeze for DisputeResolution
impl RefUnwindSafe for DisputeResolution
impl Send for DisputeResolution
impl Sync for DisputeResolution
impl Unpin for DisputeResolution
impl UnsafeUnpin for DisputeResolution
impl UnwindSafe for DisputeResolution
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