pub struct CausalLink {
pub source_entity: String,
pub source_type: String,
pub target_entity: String,
pub target_type: String,
pub relationship: String,
}Expand description
Causal link between entities in a fraud cluster.
Fields§
§source_entity: StringSource entity (e.g., payment document ID)
source_type: StringSource entity type
target_entity: StringTarget entity (e.g., vendor ID)
target_type: StringTarget entity type
relationship: StringRelationship type
Implementations§
Trait Implementations§
Source§impl Clone for CausalLink
impl Clone for CausalLink
Source§fn clone(&self) -> CausalLink
fn clone(&self) -> CausalLink
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 CausalLink
impl RefUnwindSafe for CausalLink
impl Send for CausalLink
impl Sync for CausalLink
impl Unpin for CausalLink
impl UnwindSafe for CausalLink
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