#[repr(C)]pub struct ArchivedAnalyticsResult{
pub id: Archived<MessageId>,
pub snapshot_id: Archived<u64>,
pub pagerank_complete: Archived<bool>,
pub fraud_detection_complete: Archived<bool>,
pub gaap_validation_complete: Archived<bool>,
pub benford_complete: Archived<bool>,
pub fraud_pattern_count: Archived<u32>,
pub gaap_violation_count: Archived<u32>,
pub suspense_account_count: Archived<u32>,
pub overall_risk_score: Archived<f32>,
pub benford_anomaly: Archived<bool>,
pub processing_time_us: Archived<u64>,
}Expand description
An archived AnalyticsResult
Fields§
§id: Archived<MessageId>The archived counterpart of AnalyticsResult::id
snapshot_id: Archived<u64>The archived counterpart of AnalyticsResult::snapshot_id
pagerank_complete: Archived<bool>The archived counterpart of AnalyticsResult::pagerank_complete
fraud_detection_complete: Archived<bool>The archived counterpart of AnalyticsResult::fraud_detection_complete
gaap_validation_complete: Archived<bool>The archived counterpart of AnalyticsResult::gaap_validation_complete
benford_complete: Archived<bool>The archived counterpart of AnalyticsResult::benford_complete
fraud_pattern_count: Archived<u32>The archived counterpart of AnalyticsResult::fraud_pattern_count
gaap_violation_count: Archived<u32>The archived counterpart of AnalyticsResult::gaap_violation_count
suspense_account_count: Archived<u32>The archived counterpart of AnalyticsResult::suspense_account_count
overall_risk_score: Archived<f32>The archived counterpart of AnalyticsResult::overall_risk_score
benford_anomaly: Archived<bool>The archived counterpart of AnalyticsResult::benford_anomaly
processing_time_us: Archived<u64>The archived counterpart of AnalyticsResult::processing_time_us
Auto Trait Implementations§
impl Freeze for ArchivedAnalyticsResult
impl RefUnwindSafe for ArchivedAnalyticsResult
impl Send for ArchivedAnalyticsResult
impl Sync for ArchivedAnalyticsResult
impl Unpin for ArchivedAnalyticsResult
impl UnwindSafe for ArchivedAnalyticsResult
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.