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