pub struct TokenAccountList {
pub cursor: Option<Base58String>,
pub items: Vec<TokenAccount>,
}Expand description
TokenAccountList
JSON schema
{
"type": "object",
"required": [
"items"
],
"properties": {
"cursor": {
"$ref": "#/components/schemas/Base58String"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TokenAccount"
}
}
}
}Fields§
§cursor: Option<Base58String>§items: Vec<TokenAccount>Implementations§
Source§impl TokenAccountList
impl TokenAccountList
pub fn builder() -> TokenAccountList
Trait Implementations§
Source§impl Clone for TokenAccountList
impl Clone for TokenAccountList
Source§fn clone(&self) -> TokenAccountList
fn clone(&self) -> TokenAccountList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TokenAccountList
impl Debug for TokenAccountList
Source§impl<'de> Deserialize<'de> for TokenAccountList
impl<'de> Deserialize<'de> for TokenAccountList
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
Source§impl From<TokenAccountList> for TokenAccountList
impl From<TokenAccountList> for TokenAccountList
Source§fn from(value: TokenAccountList) -> Self
fn from(value: TokenAccountList) -> Self
Converts to this type from the input type.
Source§impl Serialize for TokenAccountList
impl Serialize for TokenAccountList
Source§impl TryFrom<TokenAccountList> for TokenAccountList
impl TryFrom<TokenAccountList> for TokenAccountList
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TokenAccountList) -> Result<Self, ConversionError>
fn try_from(value: TokenAccountList) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TokenAccountList
impl RefUnwindSafe for TokenAccountList
impl Send for TokenAccountList
impl Sync for TokenAccountList
impl Unpin for TokenAccountList
impl UnsafeUnpin for TokenAccountList
impl UnwindSafe for TokenAccountList
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