pub struct GetOfferObjectResponse {
    pub index: String,
    pub ledger_index: u32,
    pub node: Option<Offer>,
    pub node_binary: Option<String>,
}

Fields

index: String

The unique ID of this ledger object.

ledger_index: u32

The ledger index of the ledger that was used when retrieving this data.

node: Option<Offer>

(Omitted if “binary”: true specified.) Object containing the data of this ledger object, according to the ledger format.

node_binary: Option<String>

(Omitted unless “binary”:true specified) The binary representation of the ledger object, as hexadecimal.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.