pub struct ProtestRecord {
pub case_id: Option<String>,
pub case_number: Option<String>,
pub title: Option<String>,
pub source_system: Option<String>,
pub outcome: Option<String>,
pub filed_date: Option<String>,
pub decision_date: Option<String>,
pub extra: HashMap<String, Value>,
}Expand description
A bid-protest case record.
Returned by Client::get_protest. Fields
match the server’s shape preset for the detail endpoint; unknown fields
fall through to extra.
Fields§
§case_id: Option<String>Internal Tango identifier for the case.
case_number: Option<String>Source-system case number (e.g. GAO file number).
title: Option<String>Human-readable title.
source_system: Option<String>Source system ("GAO", "COFC", etc.).
outcome: Option<String>Outcome label ("sustained", "denied", …).
filed_date: Option<String>ISO date the protest was filed.
decision_date: Option<String>ISO date the protest was decided, when present.
extra: HashMap<String, Value>Forward-compatible bucket for any unrecognized fields the server adds.
Trait Implementations§
Source§impl Clone for ProtestRecord
impl Clone for ProtestRecord
Source§fn clone(&self) -> ProtestRecord
fn clone(&self) -> ProtestRecord
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 ProtestRecord
impl Debug for ProtestRecord
Source§impl Default for ProtestRecord
impl Default for ProtestRecord
Source§fn default() -> ProtestRecord
fn default() -> ProtestRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProtestRecord
impl<'de> Deserialize<'de> for ProtestRecord
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 PartialEq for ProtestRecord
impl PartialEq for ProtestRecord
Source§fn eq(&self, other: &ProtestRecord) -> bool
fn eq(&self, other: &ProtestRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProtestRecord
impl Serialize for ProtestRecord
impl StructuralPartialEq for ProtestRecord
Auto Trait Implementations§
impl Freeze for ProtestRecord
impl RefUnwindSafe for ProtestRecord
impl Send for ProtestRecord
impl Sync for ProtestRecord
impl Unpin for ProtestRecord
impl UnsafeUnpin for ProtestRecord
impl UnwindSafe for ProtestRecord
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