pub struct GetProgramAccountsConfig {
pub skip_data: Option<bool>,
pub data_slice: Option<DataSlice>,
pub filters: Option<Vec<ProgramAccountFilter>>,
}Expand description
Configuration for getProgramAccounts operations
Fields§
§skip_data: Option<bool>Whether to skip data
data_slice: Option<DataSlice>The data slice
filters: Option<Vec<ProgramAccountFilter>>Filters to apply
Trait Implementations§
Source§impl Clone for GetProgramAccountsConfig
impl Clone for GetProgramAccountsConfig
Source§fn clone(&self) -> GetProgramAccountsConfig
fn clone(&self) -> GetProgramAccountsConfig
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 GetProgramAccountsConfig
impl Debug for GetProgramAccountsConfig
Source§impl<'de> Deserialize<'de> for GetProgramAccountsConfig
impl<'de> Deserialize<'de> for GetProgramAccountsConfig
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 GetProgramAccountsConfig
impl RefUnwindSafe for GetProgramAccountsConfig
impl Send for GetProgramAccountsConfig
impl Sync for GetProgramAccountsConfig
impl Unpin for GetProgramAccountsConfig
impl UnwindSafe for GetProgramAccountsConfig
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