StdDestinationHandler

Type Alias StdDestinationHandler 

Source
pub type StdDestinationHandler<PduSender, UserFaultHook> = DestinationHandler<PduSender, UserFaultHook, NativeFilestore, RemoteConfigStoreStd, StdTimerCreator, StdCountdown, LostSegmentsList>;
Available on crate feature std only.

Aliased Type§

pub struct StdDestinationHandler<PduSender, UserFaultHook> {
    pub pdu_sender: PduSender,
    pub vfs: NativeFilestore,
    pub remote_cfg_table: RemoteConfigStoreStd,
    pub check_timer_creator: StdTimerCreator,
    /* private fields */
}

Fields§

§pdu_sender: PduSender§vfs: NativeFilestore§remote_cfg_table: RemoteConfigStoreStd§check_timer_creator: StdTimerCreator

Implementations§

Source§

impl<PduSenderInstance: PduSender, UserFaultHookInstance: UserFaultHook> StdDestinationHandler<PduSenderInstance, UserFaultHookInstance>

Source

pub fn new_std( local_cfg: LocalEntityConfig<UserFaultHookInstance>, pdu_sender: PduSenderInstance, ) -> Self