[][src]Struct koibumi_core::ConfigBuilder

pub struct ConfigBuilder { /* fields omitted */ }

A builder for building a configuration set for the Koibumi Bitmessage core.

Implementations

impl Builder[src]

pub fn protocol_version(&mut self, v: ProtocolVersion) -> &mut Self[src]

Sets the protocol version. The default is 3.

pub fn max_payload_length(&mut self, v: PayloadLength) -> &mut Self[src]

Sets the maximum payload length which can be stored in a Bitmessage packet. The default is 1_600_100.

pub fn nonce_trials_per_byte(&mut self, v: NonceTrialsPerByte) -> &mut Self[src]

Sets the nonce trials per byte, which is one of the parameters of the proof of work protocol Bitmessage uses. The default is 1000.

pub fn payload_length_extra_bytes(
    &mut self,
    v: PayloadLengthExtraBytes
) -> &mut Self
[src]

Sets the payload length extra bytes, which is one of the parameters of the proof of work protocol Bitmessage uses. The default is 1000.

pub fn build(&self) -> Config[src]

Returns the configuration set this builder represents.

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

impl Default for Builder[src]

impl Eq for Builder[src]

impl PartialEq<Builder> for Builder[src]

impl StructuralEq for Builder[src]

impl StructuralPartialEq for Builder[src]

Auto Trait Implementations

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