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§
Source§impl Debug for GetOfferObjectResponse
impl Debug for GetOfferObjectResponse
Source§impl<'de> Deserialize<'de> for GetOfferObjectResponse
impl<'de> Deserialize<'de> for GetOfferObjectResponse
Source§fn 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 Freeze for GetOfferObjectResponse
impl RefUnwindSafe for GetOfferObjectResponse
impl Send for GetOfferObjectResponse
impl Sync for GetOfferObjectResponse
impl Unpin for GetOfferObjectResponse
impl UnwindSafe for GetOfferObjectResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more