Struct xrpl_api::api::get_offer_object::GetOfferObjectResponse
source · [−]pub struct GetOfferObjectResponse {
pub index: String,
pub ledger_index: u32,
pub node: Option<Offer>,
pub node_binary: Option<String>,
}Fields
index: StringThe unique ID of this ledger object.
ledger_index: u32The 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
sourceimpl Debug for GetOfferObjectResponse
impl Debug for GetOfferObjectResponse
sourceimpl<'de> Deserialize<'de> for GetOfferObjectResponse
impl<'de> Deserialize<'de> for GetOfferObjectResponse
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for GetOfferObjectResponse
impl Send for GetOfferObjectResponse
impl Sync for GetOfferObjectResponse
impl Unpin for GetOfferObjectResponse
impl UnwindSafe for GetOfferObjectResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more