[][src]Struct iota_client::response::GetNodeAPIConfigurationResponse

pub struct GetNodeAPIConfigurationResponse {
    pub max_find_transactions: Option<usize>,
    pub max_requests_list: Option<usize>,
    pub max_get_trytes: Option<usize>,
    pub max_body_length: Option<usize>,
    pub testnet: Option<bool>,
    pub milestone_start_index: i64,
}

getNodeAPIConfiguration Response Type

Fields

max_find_transactions: Option<usize>

Maximum number of transactions that may be returned by the findTransactions endpoint

max_requests_list: Option<usize>

Maximum number of parameters in an API call

max_get_trytes: Option<usize>

Maximum number of trytes that may be returned by the getTrytes endpoint

max_body_length: Option<usize>

Maximum number of characters that the body of an API call may contain

testnet: Option<bool>

See if the node runs on a network other than the Mainnet

milestone_start_index: i64

Milestone start index on IRI node

Trait Implementations

impl Clone for GetNodeAPIConfigurationResponse[src]

impl Debug for GetNodeAPIConfigurationResponse[src]

impl<'de> Deserialize<'de> for GetNodeAPIConfigurationResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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