pub struct TransactionResource {
pub type: String,
pub id: String,
pub attributes: Attributes,
pub relationships: Relationships,
pub links: Option<TransactionResourceLinks>,
}
Fields§
§type: String
The type of this resource: transactions
id: String
The unique identifier for this transaction.
attributes: Attributes
§relationships: Relationships
§links: Option<TransactionResourceLinks>
Trait Implementations§
Source§impl Debug for TransactionResource
impl Debug for TransactionResource
Source§impl<'de> Deserialize<'de> for TransactionResource
impl<'de> Deserialize<'de> for TransactionResource
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 TransactionResource
impl RefUnwindSafe for TransactionResource
impl Send for TransactionResource
impl Sync for TransactionResource
impl Unpin for TransactionResource
impl UnwindSafe for TransactionResource
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