pub struct SignalsOutcome {
pub total: u64,
pub updated: u64,
pub version_conflicts: u64,
pub noops: u64,
pub failures: Vec<Value>,
}Expand description
The raw update-by-query envelope the status, tags, and assignees routes answer with (measured, triage spec section 10).
Fields§
§total: u64§updated: u64§version_conflicts: u64§noops: u64§failures: Vec<Value>Trait Implementations§
Source§impl Clone for SignalsOutcome
impl Clone for SignalsOutcome
Source§fn clone(&self) -> SignalsOutcome
fn clone(&self) -> SignalsOutcome
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 SignalsOutcome
impl Debug for SignalsOutcome
Source§impl PartialEq for SignalsOutcome
impl PartialEq for SignalsOutcome
Source§impl Serialize for SignalsOutcome
impl Serialize for SignalsOutcome
impl StructuralPartialEq for SignalsOutcome
Auto Trait Implementations§
impl Freeze for SignalsOutcome
impl RefUnwindSafe for SignalsOutcome
impl Send for SignalsOutcome
impl Sync for SignalsOutcome
impl Unpin for SignalsOutcome
impl UnsafeUnpin for SignalsOutcome
impl UnwindSafe for SignalsOutcome
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