[][src]Trait fsuipc::Handle

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

type Sess: Session

The type of the session objects created by this handle.

Loading content...

Required methods

fn session(&'a mut self) -> Self::Sess

Create a new session from this handle

Loading content...

Implementors

Loading content...