pub struct DatabaseProperties {
Show 15 fields pub vgroups: Option<u64>, pub replica: Option<u16>, pub quorum: Option<u16>, pub days: Option<u16>, pub keep: Option<String>, pub cache: Option<u32>, pub blocks: Option<u32>, pub minrows: Option<u32>, pub maxrows: Option<u32>, pub wal: Option<u8>, pub fsync: Option<u32>, pub comp: Option<u8>, pub cachelast: Option<u8>, pub precision: Option<Precision>, pub update: Option<u8>,
}

Fields§

§vgroups: Option<u64>§replica: Option<u16>§quorum: Option<u16>§days: Option<u16>§keep: Option<String>§cache: Option<u32>§blocks: Option<u32>§minrows: Option<u32>§maxrows: Option<u32>§wal: Option<u8>§fsync: Option<u32>§comp: Option<u8>§cachelast: Option<u8>§precision: Option<Precision>§update: Option<u8>

Implementations§

source§

impl DatabaseProperties

source

pub fn new() -> Self

source

pub fn vgroups(self, vgroups: u64) -> Self

source

pub fn cache(self, cache: u32) -> Self

source

pub fn blocks(self, blocks: u32) -> Self

source

pub fn minrows(self, minrows: u32) -> Self

source

pub fn maxrows(self, maxrows: u32) -> Self

source

pub fn fsync(self, fsync: u32) -> Self

source

pub fn replica(self, replica: u16) -> Self

source

pub fn quorum(self, quorum: u16) -> Self

source

pub fn days(self, days: u16) -> Self

source

pub fn wal(self, wal: u8) -> Self

source

pub fn comp(self, comp: u8) -> Self

source

pub fn cachelast(self, cachelast: u8) -> Self

source

pub fn update(self, update: u8) -> Self

source

pub fn precision(self, precision: Precision) -> Self

source

pub fn keep(self, keep: String) -> Self

Trait Implementations§

source§

impl Debug for DatabaseProperties

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DatabaseProperties

source§

fn default() -> DatabaseProperties

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for DatabaseProperties

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for DatabaseProperties

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromStr for DatabaseProperties

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl PartialEq for DatabaseProperties

source§

fn eq(&self, other: &DatabaseProperties) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for DatabaseProperties

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for DatabaseProperties

source§

impl StructuralEq for DatabaseProperties

source§

impl StructuralPartialEq for DatabaseProperties

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,