pub struct ContestedItem {
pub issue: i64,
pub title: String,
pub positions: BTreeMap<String, String>,
pub reasons: BTreeMap<String, String>,
pub note: Option<String>,
}Fields§
§issue: i64§title: String§positions: BTreeMap<String, String>Agent name to “do” or “skip”.
reasons: BTreeMap<String, String>§note: Option<String>Trait Implementations§
Source§impl Clone for ContestedItem
impl Clone for ContestedItem
Source§fn clone(&self) -> ContestedItem
fn clone(&self) -> ContestedItem
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 ContestedItem
impl Debug for ContestedItem
Source§impl<'de> Deserialize<'de> for ContestedItem
impl<'de> Deserialize<'de> for ContestedItem
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 ContestedItem
impl RefUnwindSafe for ContestedItem
impl Send for ContestedItem
impl Sync for ContestedItem
impl Unpin for ContestedItem
impl UnsafeUnpin for ContestedItem
impl UnwindSafe for ContestedItem
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