1 2 3 4 5 6 7 8 9 10 11
use super::Handshake;
use std::sync::Arc;
#[derive(Default)]
pub struct Options {
// placeholder for future settings
// TODO review if it makes sense to impl `reconnect_interval`
pub receiver_channel_cap: Option<usize>,
pub sender_channel_cap: Option<usize>,
pub handshake: Option<Arc<dyn Handshake>>,
}