Trait fsuipc::Handle [] [src]

pub trait Handle<'a> {
    type Sess: Session;
    fn session(&'a mut self) -> Self::Sess;
}

A handle to FSUIPC This type represents a handle to FSUIPC. It cannot be used directly to read of write from or to FSUIPC offsets. A Session object is created from the handle instead.

Associated Types

The type of the session objects created by this handle.

Required Methods

Create a new session from this handle

Implementors