pub struct RelationshipLabelExtractor;Expand description
Relationship label extractor.
Implementations§
Source§impl RelationshipLabelExtractor
impl RelationshipLabelExtractor
Sourcepub fn extract_from_customers(
customers: &[BankingCustomer],
) -> Vec<RelationshipLabel>
pub fn extract_from_customers( customers: &[BankingCustomer], ) -> Vec<RelationshipLabel>
Extract relationship labels from customers.
Sourcepub fn extract_from_transactions(
transactions: &[BankTransaction],
) -> Vec<RelationshipLabel>
pub fn extract_from_transactions( transactions: &[BankTransaction], ) -> Vec<RelationshipLabel>
Extract transaction-based relationships.
Sourcepub fn summarize(labels: &[RelationshipLabel]) -> RelationshipLabelSummary
pub fn summarize(labels: &[RelationshipLabel]) -> RelationshipLabelSummary
Get relationship label summary.
Auto Trait Implementations§
impl Freeze for RelationshipLabelExtractor
impl RefUnwindSafe for RelationshipLabelExtractor
impl Send for RelationshipLabelExtractor
impl Sync for RelationshipLabelExtractor
impl Unpin for RelationshipLabelExtractor
impl UnwindSafe for RelationshipLabelExtractor
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