pub struct ScreenVerdict {
pub entry: i64,
pub verdict: Screened,
pub title: String,
pub reason: String,
pub duplicate_of: Option<i64>,
}Expand description
One agent’s ruling on one entry in the local follow-up queue.
Fields§
§entry: i64The entry’s position in the list it was given, from 1.
Matched back by index rather than by title, because the entries are spar’s own data and so can carry a handle a model cannot paraphrase.
verdict: Screened§title: String§reason: String§duplicate_of: Option<i64>The issue or sibling entry a duplicate points at.
Trait Implementations§
Source§impl Clone for ScreenVerdict
impl Clone for ScreenVerdict
Source§fn clone(&self) -> ScreenVerdict
fn clone(&self) -> ScreenVerdict
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 ScreenVerdict
impl Debug for ScreenVerdict
Source§impl<'de> Deserialize<'de> for ScreenVerdict
impl<'de> Deserialize<'de> for ScreenVerdict
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 ScreenVerdict
impl RefUnwindSafe for ScreenVerdict
impl Send for ScreenVerdict
impl Sync for ScreenVerdict
impl Unpin for ScreenVerdict
impl UnsafeUnpin for ScreenVerdict
impl UnwindSafe for ScreenVerdict
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