pub struct DisputeRecord {
pub dispute_id: String,
pub bounty_id: String,
pub opened_by: String,
pub status: DisputeStatus,
pub evidence_json: Option<String>,
pub resolution: Option<String>,
pub resolved_by: Option<String>,
pub resolved_at_ms: Option<i64>,
pub created_at_ms: i64,
}Expand description
Dispute record
Fields§
§dispute_id: String§bounty_id: String§opened_by: String§status: DisputeStatus§evidence_json: Option<String>§resolution: Option<String>§resolved_by: Option<String>§resolved_at_ms: Option<i64>§created_at_ms: i64Trait Implementations§
Source§impl Clone for DisputeRecord
impl Clone for DisputeRecord
Source§fn clone(&self) -> DisputeRecord
fn clone(&self) -> DisputeRecord
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 DisputeRecord
impl Debug for DisputeRecord
Source§impl<'de> Deserialize<'de> for DisputeRecord
impl<'de> Deserialize<'de> for DisputeRecord
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 DisputeRecord
impl RefUnwindSafe for DisputeRecord
impl Send for DisputeRecord
impl Sync for DisputeRecord
impl Unpin for DisputeRecord
impl UnsafeUnpin for DisputeRecord
impl UnwindSafe for DisputeRecord
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