Struct sequoia_ipc::core::Context[][src]

pub struct Context { /* fields omitted */ }

A Context for Sequoia.

Examples

A context with reasonable defaults can be created using Context::new:

let c = Context::new()?;

A context can be configured using the builder pattern with Context::configure:

let c = Context::configure()
            .ipc_policy(IPCPolicy::Robust)
            .build()?;

Implementations

impl Context[src]

pub fn new() -> Result<Self>[src]

Creates a Context with reasonable defaults.

pub fn configure() -> Config[src]

Creates a Context that can be configured.

The configuration is seeded like in Context::new, but can be modified. A configuration has to be finalized using .build() in order to turn it into a Context.

pub fn home(&self) -> &Path[src]

Returns the directory containing shared state.

pub fn lib(&self) -> &Path[src]

Returns the directory containing backend servers.

pub fn ipc_policy(&self) -> &IPCPolicy[src]

Returns the IPC policy.

pub fn ephemeral(&self) -> bool[src]

Returns whether or not this is an ephemeral context.

Trait Implementations

impl Clone for Context[src]

impl Drop for Context[src]

Auto Trait Implementations

impl RefUnwindSafe for Context

impl Send for Context

impl Sync for Context

impl Unpin for Context

impl UnwindSafe for Context

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> DynClone for T where
    T: Clone
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,