pub struct TreeContextInfo {
pub cpi_context: Option<String>,
pub queue: String,
pub tree: String,
pub tree_type: u16,
}
Fields§
§cpi_context: Option<String>
A Solana public key represented as a base58 string.
queue: String
A Solana public key represented as a base58 string.
tree: String
A Solana public key represented as a base58 string.
tree_type: u16
Implementations§
Trait Implementations§
Source§impl Clone for TreeContextInfo
impl Clone for TreeContextInfo
Source§fn clone(&self) -> TreeContextInfo
fn clone(&self) -> TreeContextInfo
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 TreeContextInfo
impl Debug for TreeContextInfo
Source§impl Default for TreeContextInfo
impl Default for TreeContextInfo
Source§fn default() -> TreeContextInfo
fn default() -> TreeContextInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TreeContextInfo
impl<'de> Deserialize<'de> for TreeContextInfo
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 PartialEq for TreeContextInfo
impl PartialEq for TreeContextInfo
Source§impl Serialize for TreeContextInfo
impl Serialize for TreeContextInfo
impl StructuralPartialEq for TreeContextInfo
Auto Trait Implementations§
impl Freeze for TreeContextInfo
impl RefUnwindSafe for TreeContextInfo
impl Send for TreeContextInfo
impl Sync for TreeContextInfo
impl Unpin for TreeContextInfo
impl UnwindSafe for TreeContextInfo
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