Skip to main content

BoxBiConsumerOnce

Struct BoxBiConsumerOnce 

Source
pub struct BoxBiConsumerOnce<T, U> { /* private fields */ }
Expand description

BoxBiConsumerOnce struct

A one-time bi-consumer implementation based on Box<dyn FnOnce(&T, &U)> for single ownership scenarios. This is the simplest one-time bi-consumer type for truly one-time use.

§Features

  • Single Ownership: Not cloneable, ownership moves on use
  • Zero Overhead: No reference counting or locking
  • One-Time Use: Consumes self on first call
  • Builder Pattern: Method chaining consumes self naturally

§Use Cases

Choose BoxBiConsumerOnce when:

  • The bi-consumer is truly used only once
  • Building pipelines where ownership naturally flows
  • The consumer captures values that should be consumed
  • Performance is critical and sharing overhead is unacceptable

§Performance

BoxBiConsumerOnce has the best performance:

  • No reference counting overhead
  • No lock acquisition or runtime borrow checking
  • Direct function call through vtable
  • Minimal memory footprint (single pointer)

§Examples

use qubit_function::{BiConsumerOnce, BoxBiConsumerOnce};

let consumer = BoxBiConsumerOnce::new(|x: &i32, y: &i32| {
    println!("Sum: {}", x + y);
});
consumer.accept(&5, &3);

Implementations§

Source§

impl<T, U> BoxBiConsumerOnce<T, U>

Source

pub fn new<F>(f: F) -> Self
where F: FnOnce(&T, &U) + 'static,

Creates a new bi-consumer.

Wraps the provided closure in the appropriate smart pointer type for this bi-consumer implementation.

Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (lines 32-37)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}
Source

pub fn new_with_name<F>(name: &str, f: F) -> Self
where F: FnOnce(&T, &U) + 'static,

Creates a new named bi-consumer.

Wraps the provided closure and assigns it a name, which is useful for debugging and logging purposes.

Source

pub fn new_with_optional_name<F>(f: F, name: Option<String>) -> Self
where F: FnOnce(&T, &U) + 'static,

Creates a new named bi-consumer with an optional name.

Wraps the provided closure and assigns it an optional name.

Source

pub fn name(&self) -> Option<&str>

Gets the name of this bi-consumer.

§Returns

Returns Some(&str) if a name was set, None otherwise.

Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (line 176)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}
Source

pub fn set_name(&mut self, name: &str)

Sets the name of this bi-consumer.

§Parameters
  • name - The name to set for this bi-consumer
Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (line 178)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}
Source

pub fn clear_name(&mut self)

Clears the name of this bi-consumer.

Source

pub fn noop() -> Self

Creates a no-operation bi-consumer.

Creates a bi-consumer that does nothing when called. Useful for default values or placeholder implementations.

§Returns

Returns a new bi-consumer instance that performs no operation.

Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (line 175)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}
Source

pub fn when<P>(self, predicate: P) -> BoxConditionalBiConsumerOnce<T, U>
where T: 'static, U: 'static, P: BiPredicate<T, U> + 'static,

Creates a conditional two-parameter consumer that executes based on bi-predicate result.

§Parameters
  • predicate - The bi-predicate to determine whether to execute the consumption operation
§Returns

Returns a conditional two-parameter consumer that only executes when the predicate returns true.

§Examples
use std::sync::Arc;
use std::sync::atomic::{AtomicI32, Ordering};
use qubit_function::consumers::*;

let counter = Arc::new(AtomicI32::new(0));
let bi_consumer = BoxBiConsumer::new({
    let counter = Arc::clone(&counter);
    move |key: &String, value: &i32| {
        if key == "increment" {
            counter.fetch_add(*value, Ordering::SeqCst);
        }
    }
});

let conditional = bi_consumer.when(|key: &String, value: &i32| *value > 0);
conditional.accept(&"increment".to_string(), &5);  // counter = 5
conditional.accept(&"increment".to_string(), &-2); // not executed
Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (line 76)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}
Source

pub fn and_then<C>(self, after: C) -> BoxBiConsumerOnce<T, U>
where Self: Sized + 'static, T: 'static, U: 'static, C: BiConsumerOnce<T, U> + 'static,

Chains execution with another two-parameter consumer, executing the current consumer first, then the subsequent consumer.

§Parameters
  • after - The subsequent two-parameter consumer to execute after the current consumer completes
§Returns

Returns a new two-parameter consumer that executes the current consumer and the subsequent consumer in sequence.

§Examples
use std::sync::Arc;
use std::sync::atomic::{AtomicI32, Ordering};
use qubit_function::consumers::*;

let counter1 = Arc::new(AtomicI32::new(0));
let counter2 = Arc::new(AtomicI32::new(0));

let bi_consumer1 = BoxBiConsumer::new({
    let counter = Arc::clone(&counter1);
    move |key: &String, value: &i32| {
        counter.fetch_add(*value, Ordering::SeqCst);
    }
});

let bi_consumer2 = BoxBiConsumer::new({
    let counter = Arc::clone(&counter2);
    move |key: &String, value: &i32| {
        counter.fetch_add(*value * 2, Ordering::SeqCst);
    }
});

let chained = bi_consumer1.and_then(bi_consumer2);
chained.accept(&"test".to_string(), &3);
// counter1 = 3, counter2 = 6
Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (lines 55-60)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock()
34            .expect("mutex should not be poisoned")
35            .push(*x + *y);
36        println!("  Sum: {}", x + y);
37    });
38    consumer.accept(&10, &5);
39    println!(
40        "  Log: {:?}\n",
41        *log.lock().expect("mutex should not be poisoned")
42    );
43
44    // 2. Method chaining
45    println!("2. Method chaining:");
46    let log = Arc::new(Mutex::new(Vec::new()));
47    let l1 = log.clone();
48    let l2 = log.clone();
49    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
50        l1.lock()
51            .expect("mutex should not be poisoned")
52            .push(*x + *y);
53        println!("  First: sum={}", x + y);
54    })
55    .and_then(move |x: &i32, y: &i32| {
56        l2.lock()
57            .expect("mutex should not be poisoned")
58            .push(*x * *y);
59        println!("  Second: product={}", x * y);
60    });
61    chained.accept(&5, &3);
62    println!(
63        "  Log: {:?}\n",
64        *log.lock().expect("mutex should not be poisoned")
65    );
66
67    // 3. Conditional execution - true case
68    println!("3. Conditional execution - true case:");
69    let log = Arc::new(Mutex::new(Vec::new()));
70    let l = log.clone();
71    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
72        l.lock()
73            .expect("mutex should not be poisoned")
74            .push(*x + *y);
75    })
76    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
77    conditional.accept(&5, &3);
78    println!(
79        "  Positive values: {:?}\n",
80        *log.lock().expect("mutex should not be poisoned")
81    );
82
83    // 4. Conditional execution - false case
84    println!("4. Conditional execution - false case:");
85    let log = Arc::new(Mutex::new(Vec::new()));
86    let l = log.clone();
87    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
88        l.lock()
89            .expect("mutex should not be poisoned")
90            .push(*x + *y);
91    })
92    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
93    conditional.accept(&-5, &3);
94    println!(
95        "  Negative value (unchanged): {:?}\n",
96        *log.lock().expect("mutex should not be poisoned")
97    );
98
99    // 5. Conditional branching
100    println!("5. Conditional branching:");
101    let log = Arc::new(Mutex::new(Vec::new()));
102    let l1 = log.clone();
103    let l2 = log.clone();
104    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
105        l1.lock().expect("mutex should not be poisoned").push(*x);
106    })
107    .when(|x: &i32, y: &i32| *x > *y)
108    .or_else(move |_x: &i32, y: &i32| {
109        l2.lock().expect("mutex should not be poisoned").push(*y);
110    });
111    branch.accept(&15, &10);
112    println!(
113        "  When x > y: {:?}\n",
114        *log.lock().expect("mutex should not be poisoned")
115    );
116
117    // 6. Working with closures directly
118    println!("6. Working with closures directly:");
119    let log = Arc::new(Mutex::new(Vec::new()));
120    let l = log.clone();
121    let closure = move |x: &i32, y: &i32| {
122        l.lock()
123            .expect("mutex should not be poisoned")
124            .push(*x + *y);
125        println!("  Processed: {}", x + y);
126    };
127    closure.accept(&10, &20);
128    println!(
129        "  Log: {:?}\n",
130        *log.lock().expect("mutex should not be poisoned")
131    );
132
133    // 7. Moving captured values
134    println!("7. Moving captured values:");
135    let data = vec![1, 2, 3, 4, 5];
136    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
137        println!("  x={}, y={}", x, y);
138        println!("  Captured data: {:?}", data);
139        println!("  Data sum: {}", data.iter().sum::<i32>());
140    });
141    consumer.accept(&5, &3);
142    // data is no longer available here
143    println!();
144
145    // 8. Initialization callback
146    println!("8. Initialization callback:");
147    let log = Arc::new(Mutex::new(Vec::new()));
148    let l = log.clone();
149    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
150        println!("  Initializing with dimensions: {}x{}", width, height);
151        l.lock()
152            .expect("mutex should not be poisoned")
153            .push(*width * *height);
154    });
155    init_callback.accept(&800, &600);
156    println!(
157        "  Areas: {:?}\n",
158        *log.lock().expect("mutex should not be poisoned")
159    );
160
161    // 9. Cleanup callback
162    println!("9. Cleanup callback:");
163    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
164        println!("  Cleanup: processed {} out of {} items", count, total);
165        println!(
166            "  Success rate: {:.1}%",
167            (*count as f64 / *total as f64) * 100.0
168        );
169    });
170    cleanup.accept(&85, &100);
171    println!();
172
173    // 10. Name support
174    println!("10. Name support:");
175    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
176    println!("  Initial name: {:?}", named_consumer.name());
177
178    named_consumer.set_name("init_callback");
179    println!("  After setting name: {:?}", named_consumer.name());
180    println!("  Display: {}", named_consumer);
181    named_consumer.accept(&1, &2);
182    println!();
183
184    // 11. Print helpers
185    println!("11. Print helpers:");
186    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
187    print.accept(&42, &10);
188
189    let print_with =
190        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
191    print_with.accept(&800, &600);
192    println!();
193
194    // 12. Converting to function
195    println!("12. Converting to function:");
196    let log = Arc::new(Mutex::new(Vec::new()));
197    let l = log.clone();
198    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
199        l.lock()
200            .expect("mutex should not be poisoned")
201            .push(*x + *y);
202    });
203    let func = consumer.into_fn();
204    func(&7, &3);
205    println!(
206        "  Log: {:?}\n",
207        *log.lock().expect("mutex should not be poisoned")
208    );
209
210    println!("=== Demo Complete ===");
211}

Trait Implementations§

Source§

impl<T, U> BiConsumerOnce<T, U> for BoxBiConsumerOnce<T, U>

Source§

fn accept(self, first: &T, second: &U)

Performs the one-time consumption operation Read more
Source§

fn into_box(self) -> BoxBiConsumerOnce<T, U>

Converts to BoxBiConsumerOnce Read more
Source§

fn into_fn(self) -> impl FnOnce(&T, &U)

Converts to a closure Read more
Source§

impl<T, U> Debug for BoxBiConsumerOnce<T, U>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, U> Display for BoxBiConsumerOnce<T, U>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, U> Freeze for BoxBiConsumerOnce<T, U>

§

impl<T, U> !RefUnwindSafe for BoxBiConsumerOnce<T, U>

§

impl<T, U> !Send for BoxBiConsumerOnce<T, U>

§

impl<T, U> !Sync for BoxBiConsumerOnce<T, U>

§

impl<T, U> Unpin for BoxBiConsumerOnce<T, U>

§

impl<T, U> UnsafeUnpin for BoxBiConsumerOnce<T, U>

§

impl<T, U> !UnwindSafe for BoxBiConsumerOnce<T, U>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.