pub struct Program { /* private fields */ }Expand description
Program is the primary client handle to be used to build and send requests.
Implementations
sourceimpl Program
impl Program
pub fn payer(&self) -> Pubkey
sourcepub fn request(&self) -> RequestBuilder<'_>
pub fn request(&self) -> RequestBuilder<'_>
Returns a request builder.
sourcepub fn state_request(&self) -> RequestBuilder<'_>
pub fn state_request(&self) -> RequestBuilder<'_>
Returns a request builder for program state.
sourcepub fn account<T>(&self, address: Pubkey) -> Result<T, ClientError>where
T: AccountDeserialize,
pub fn account<T>(&self, address: Pubkey) -> Result<T, ClientError>where
T: AccountDeserialize,
Returns the account at the given address.
sourcepub fn accounts<T>(
&self,
filters: Vec<RpcFilterType, Global>
) -> Result<Vec<(Pubkey, T), Global>, ClientError>where
T: AccountDeserialize + Discriminator,
pub fn accounts<T>(
&self,
filters: Vec<RpcFilterType, Global>
) -> Result<Vec<(Pubkey, T), Global>, ClientError>where
T: AccountDeserialize + Discriminator,
Returns all program accounts of the given type matching the given filters
sourcepub fn accounts_lazy<T>(
&self,
filters: Vec<RpcFilterType, Global>
) -> Result<ProgramAccountsIterator<T>, ClientError>where
T: AccountDeserialize + Discriminator,
pub fn accounts_lazy<T>(
&self,
filters: Vec<RpcFilterType, Global>
) -> Result<ProgramAccountsIterator<T>, ClientError>where
T: AccountDeserialize + Discriminator,
Returns all program accounts of the given type matching the given filters as an iterator Deserialization is executed lazily
pub fn state<T>(&self) -> Result<T, ClientError>where
T: AccountDeserialize,
pub fn rpc(&self) -> RpcClient
pub fn id(&self) -> Pubkey
pub fn on<T>(
&self,
f: impl Fn(&EventContext, T) + Send + 'static
) -> Result<PubsubClientSubscription<Response<RpcLogsResponse>>, ClientError>where
T: Event + BorshDeserialize,
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Program
impl !Send for Program
impl !Sync for Program
impl Unpin for Program
impl !UnwindSafe for Program
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more