Config

Struct Config 

Source
pub struct Config<V: Variant, P: PublicKey, Z: Coordinator<PublicKey = P>, B: Block> {
Show 20 fields pub public_key: P, pub identity: V::Public, pub coordinator: Z, pub partition_prefix: String, pub mailbox_size: usize, pub backfill_quota: Quota, pub view_retention_timeout: u64, pub namespace: Vec<u8>, pub prunable_items_per_section: NonZeroU64, pub immutable_items_per_section: NonZeroU64, pub freezer_table_initial_size: u32, pub freezer_table_resize_frequency: u8, pub freezer_table_resize_chunk_size: u32, pub freezer_journal_target_size: u64, pub freezer_journal_compression: Option<u8>, pub freezer_journal_buffer_pool: PoolRef, pub replay_buffer: NonZeroUsize, pub write_buffer: NonZeroUsize, pub codec_config: B::Cfg, pub max_repair: u64,
}
Expand description

Marshal configuration.

Fields§

§public_key: P

The public key of the validator.

§identity: V::Public

The identity of the network.

§coordinator: Z

The coordinator for the resolvers.

§partition_prefix: String

The prefix to use for all partitions.

§mailbox_size: usize

Size of backfill request/response mailbox.

§backfill_quota: Quota

Backfill rate limit.

§view_retention_timeout: u64

Minimum number of views to retain temporary data after the application processes a block.

Useful for keeping around information that peers may desire to have.

§namespace: Vec<u8>

Namespace for proofs.

§prunable_items_per_section: NonZeroU64

Prunable archive partition prefix.

§immutable_items_per_section: NonZeroU64

The number of items to store per section in immutable archives.

§freezer_table_initial_size: u32

The initial size of the freezer table.

§freezer_table_resize_frequency: u8

The frequency (in number of resizes) at which to check if the freezer table should be resized.

§freezer_table_resize_chunk_size: u32

The number of items to add to the freezer table when resizing.

§freezer_journal_target_size: u64

The target size of the freezer journal.

§freezer_journal_compression: Option<u8>

The compression level to use for the freezer journal.

§freezer_journal_buffer_pool: PoolRef

The buffer pool to use for the freezer journal.

§replay_buffer: NonZeroUsize

The size of the replay buffer for storage archives.

§write_buffer: NonZeroUsize

The size of the write buffer for storage archives.

§codec_config: B::Cfg

Codec configuration for block type.

§max_repair: u64

Maximum number of blocks to repair at once

Auto Trait Implementations§

§

impl<V, P, Z, B> Freeze for Config<V, P, Z, B>
where P: Freeze, <V as Variant>::Public: Freeze, Z: Freeze, <B as Read>::Cfg: Freeze,

§

impl<V, P, Z, B> !RefUnwindSafe for Config<V, P, Z, B>

§

impl<V, P, Z, B> Send for Config<V, P, Z, B>

§

impl<V, P, Z, B> Sync for Config<V, P, Z, B>

§

impl<V, P, Z, B> Unpin for Config<V, P, Z, B>
where P: Unpin, <V as Variant>::Public: Unpin, Z: Unpin, <B as Read>::Cfg: Unpin,

§

impl<V, P, Z, B> !UnwindSafe for Config<V, P, Z, B>

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

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,