Struct pliantdb_local::config::Views[][src]

pub struct Views {
    pub check_integrity_on_open: bool,
}

Configuration options for views.

Fields

check_integrity_on_open: bool

If true, the database will scan all views during the call to open_local. This will cause database opening to take longer, but once the database is open, no request will need to wait for the integrity to be checked. However, for faster startup time, you may wish to delay the integrity scan. Default value is false.

Trait Implementations

impl Debug for Views[src]

impl Default for Views[src]

Auto Trait Implementations

impl RefUnwindSafe for Views

impl Send for Views

impl Sync for Views

impl Unpin for Views

impl UnwindSafe for Views

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.