pub struct ShadowEvent {
pub id: String,
pub timestamp: i64,
pub source: String,
pub content: String,
pub meta: Option<String>,
pub ingested_at: i64,
pub content_hash: Option<String>,
pub decay_score: f64,
pub flagged_at: i64,
}Fields§
§id: String§timestamp: i64§source: String§content: String§meta: Option<String>§ingested_at: i64§content_hash: Option<String>§decay_score: f64§flagged_at: i64Trait Implementations§
Source§impl Clone for ShadowEvent
impl Clone for ShadowEvent
Source§fn clone(&self) -> ShadowEvent
fn clone(&self) -> ShadowEvent
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 moreAuto Trait Implementations§
impl Freeze for ShadowEvent
impl RefUnwindSafe for ShadowEvent
impl Send for ShadowEvent
impl Sync for ShadowEvent
impl Unpin for ShadowEvent
impl UnsafeUnpin for ShadowEvent
impl UnwindSafe for ShadowEvent
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