[][src]Struct koibumi_core::Config

pub struct Config { /* fields omitted */ }

A set of configurations for the Koibumi Bitmessage core.

Implementations

impl Config[src]

pub fn builder() -> Builder[src]

Constructs a builder for building a configuration set.

pub fn new() -> Self[src]

Constructs a default configuration set.

pub fn protocol_version(&self) -> ProtocolVersion[src]

Returns the protocol version. The default is 3.

pub fn max_payload_length(&self) -> PayloadLength[src]

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

pub fn nonce_trials_per_byte(&self) -> NonceTrialsPerByte[src]

Returns 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(&self) -> PayloadLengthExtraBytes[src]

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

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl Eq for Config[src]

impl PartialEq<Config> for Config[src]

impl StructuralEq for Config[src]

impl StructuralPartialEq for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

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.

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