pub struct BehavioralFeedReport {
pub schema: String,
pub generated_at: u64,
pub filters: BehavioralFeedQuery,
pub privacy: BehavioralFeedPrivacyBoundary,
pub decisions: BehavioralFeedDecisionSummary,
pub settlements: BehavioralFeedSettlementSummary,
pub governed_actions: BehavioralFeedGovernedActionSummary,
pub metered_billing: BehavioralFeedMeteredBillingSummary,
pub reputation: Option<BehavioralFeedReputationSummary>,
pub shared_evidence: SharedEvidenceReferenceSummary,
pub receipts: Vec<BehavioralFeedReceiptRow>,
}Fields§
§schema: String§generated_at: u64§filters: BehavioralFeedQuery§privacy: BehavioralFeedPrivacyBoundary§decisions: BehavioralFeedDecisionSummary§settlements: BehavioralFeedSettlementSummary§governed_actions: BehavioralFeedGovernedActionSummary§metered_billing: BehavioralFeedMeteredBillingSummary§reputation: Option<BehavioralFeedReputationSummary>§receipts: Vec<BehavioralFeedReceiptRow>Trait Implementations§
Source§impl Clone for BehavioralFeedReport
impl Clone for BehavioralFeedReport
Source§fn clone(&self) -> BehavioralFeedReport
fn clone(&self) -> BehavioralFeedReport
Returns a duplicate of the value. Read more
1.0.0 · 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 BehavioralFeedReport
impl Debug for BehavioralFeedReport
Source§impl<'de> Deserialize<'de> for BehavioralFeedReport
impl<'de> Deserialize<'de> for BehavioralFeedReport
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 BehavioralFeedReport
impl PartialEq for BehavioralFeedReport
Source§impl Serialize for BehavioralFeedReport
impl Serialize for BehavioralFeedReport
impl StructuralPartialEq for BehavioralFeedReport
Auto Trait Implementations§
impl Freeze for BehavioralFeedReport
impl RefUnwindSafe for BehavioralFeedReport
impl Send for BehavioralFeedReport
impl Sync for BehavioralFeedReport
impl Unpin for BehavioralFeedReport
impl UnsafeUnpin for BehavioralFeedReport
impl UnwindSafe for BehavioralFeedReport
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