Query

Enum Query 

Source
pub enum Query<N: Network, B: BlockStorage<N>> {
    VM(BlockStore<N, B>),
    REST(Uri),
    STATIC(StaticQuery<N>),
}
Expand description

Allows inspecting the state of the blockstain using either local state or a remote endpoint.

Variants§

§

VM(BlockStore<N, B>)

The block store from the VM.

§

REST(Uri)

The base URL of the node.

§

STATIC(StaticQuery<N>)

The local state to query.

Implementations§

Source§

impl<N: Network, B: BlockStorage<N>> Query<N, B>

Source

pub fn get_transaction( &self, transaction_id: &N::TransactionID, ) -> Result<Transaction<N>>

Returns the transaction for the given transaction ID.

Source

pub fn get_program(&self, program_id: &ProgramID<N>) -> Result<Program<N>>

Returns the program for the given program ID.

Trait Implementations§

Source§

impl<N: Clone + Network, B: Clone + BlockStorage<N>> Clone for Query<N, B>

Source§

fn clone(&self) -> Query<N, B>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<N: Network, B: BlockStorage<N>> From<&BlockStore<N, B>> for Query<N, B>

Initialize the Query object from a local BlockStore.

Source§

fn from(block_store: &BlockStore<N, B>) -> Self

Converts to this type from the input type.
Source§

impl<N: Network, B: BlockStorage<N>> From<BlockStore<N, B>> for Query<N, B>

Initialize the Query object from a local BlockStore.

Source§

fn from(block_store: BlockStore<N, B>) -> Self

Converts to this type from the input type.
Source§

impl<N: Network, B: BlockStorage<N>> From<Uri> for Query<N, B>

Initialize the Query object from an endpoint URL. The URI should point to a snarkOS node’s REST API.

Source§

fn from(uri: Uri) -> Self

Converts to this type from the input type.
Source§

impl<N: Network, B: BlockStorage<N>> FromStr for Query<N, B>

Initialize the Query object from an endpoint URL (passed as a string). The URI should point to a snarkOS node’s REST API.

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(str_representation: &str) -> Result<Self>

Parses a string s to return a value of this type. Read more
Source§

impl<N: Network, B: BlockStorage<N>> QueryTrait<N> for Query<N, B>

Source§

fn current_state_root(&self) -> Result<N::StateRoot>

Returns the current state root.

Source§

fn get_state_path_for_commitment( &self, commitment: &Field<N>, ) -> Result<StatePath<N>>

Returns a state path for the given commitment.

Source§

fn get_state_paths_for_commitments( &self, commitments: &[Field<N>], ) -> Result<Vec<StatePath<N>>>

Returns a list of state paths for the given list of commitments.

Source§

fn current_block_height(&self) -> Result<u32>

Returns a state path for the given commitment.

Source§

impl<N: Network, B: BlockStorage<N>> TryFrom<&String> for Query<N, B>

Initialize the Query object from an endpoint URL (passed as a string). The URI should point to a snarkOS node’s REST API.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(string_representation: &String) -> Result<Self>

Performs the conversion.
Source§

impl<N: Network, B: BlockStorage<N>> TryFrom<&str> for Query<N, B>

Initialize the Query object from an endpoint URL (passed as a string). The URI should point to a snarkOS node’s REST API.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(str_representation: &str) -> Result<Self>

Performs the conversion.
Source§

impl<N: Network, B: BlockStorage<N>> TryFrom<String> for Query<N, B>

Initialize the Query object from an endpoint URL (passed as a string). The URI should point to a snarkOS node’s REST API.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(string_representation: String) -> Result<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl<N, B> !Freeze for Query<N, B>

§

impl<N, B> !RefUnwindSafe for Query<N, B>

§

impl<N, B> Send for Query<N, B>

§

impl<N, B> Sync for Query<N, B>

§

impl<N, B> Unpin for Query<N, B>
where B: Unpin, <N as Network>::StateRoot: Unpin, <N as Environment>::Field: Unpin, <N as Network>::BlockHash: Unpin, <N as Network>::TransactionID: Unpin, N: Unpin,

§

impl<N, B> !UnwindSafe for Query<N, B>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V