pub struct AccountInfoResponseValue {
pub kelvin: u64,
pub owner: String,
pub data: Vec<String>,
pub executable: bool,
pub rent_epoch: u64,
pub space: usize,
}Expand description
Account information that is returned by the Rialo RPC API.
Fields§
§kelvin: u64§owner: String§data: Vec<String>§executable: bool§rent_epoch: u64§space: usizeTrait Implementations§
Source§impl Clone for AccountInfoResponseValue
impl Clone for AccountInfoResponseValue
Source§fn clone(&self) -> AccountInfoResponseValue
fn clone(&self) -> AccountInfoResponseValue
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 AccountInfoResponseValue
impl Debug for AccountInfoResponseValue
Source§impl<'de> Deserialize<'de> for AccountInfoResponseValue
impl<'de> Deserialize<'de> for AccountInfoResponseValue
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 AccountInfoResponseValue
impl RefUnwindSafe for AccountInfoResponseValue
impl Send for AccountInfoResponseValue
impl Sync for AccountInfoResponseValue
impl Unpin for AccountInfoResponseValue
impl UnsafeUnpin for AccountInfoResponseValue
impl UnwindSafe for AccountInfoResponseValue
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