[][src]Struct eventum::uds_server::UdsServerInner

pub struct UdsServerInner { /* fields omitted */ }

UdsServer Inner.

Implementations

impl UdsServerInner[src]

UdsServerInner implementation.

pub fn new(
    server: Arc<UdsServer>,
    event_manager: Arc<Mutex<EventManager>>,
    handler: Arc<dyn UdsServerHandler>,
    path: &PathBuf
) -> UdsServerInner
[src]

Constructor.

pub fn lookup_entry(&self, index: u32) -> Option<Arc<UdsServerEntry>>[src]

Return UdsServerEntry by index.

Trait Implementations

impl EventHandler for UdsServerInner[src]

EventHandler implementation for UdsServerInner.

fn handle(&self, e: EventType) -> Result<(), EventError>[src]

Event handler.

impl Send for UdsServerInner[src]

impl Sync for UdsServerInner[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.