Struct flow_sdk::access::GetAccountAtBlockHeightRequest [−][src]
pub struct GetAccountAtBlockHeightRequest<Address> {
pub address: Address,
pub block_height: u64,
}
Expand description
Retrieves information of an account at the specific block height.
Fields
address: Address
The raw bytes of the address of the account.
block_height: u64
The block height.
Trait Implementations
type Wire = LengthDelimitedWire
returns the size in bytes when encoded, including the field number.
fn encode_field<V>(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: V
) where
V: VarInt,
fn encode_field<V>(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: V
) where
V: VarInt,
The entry point to encoding Encodable
s in a message. Read more
unsafe fn encode_field_precomputed(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: &[u8]
)
unsafe fn encode_field_precomputed(
&self,
s: &mut ProtobufSerializer<impl BufMut>,
field_number: &[u8]
)
Encodes a field using precomputed bytes for the field number and the wire type varint. Read more
impl<Address> EncodableMessage for GetAccountAtBlockHeightRequest<Address> where
Address: AsRef<[u8]>,
impl<Address> EncodableMessage for GetAccountAtBlockHeightRequest<Address> where
Address: AsRef<[u8]>,
Auto Trait Implementations
impl<Address> RefUnwindSafe for GetAccountAtBlockHeightRequest<Address> where
Address: RefUnwindSafe,
impl<Address> Send for GetAccountAtBlockHeightRequest<Address> where
Address: Send,
impl<Address> Sync for GetAccountAtBlockHeightRequest<Address> where
Address: Sync,
impl<Address> Unpin for GetAccountAtBlockHeightRequest<Address> where
Address: Unpin,
impl<Address> UnwindSafe for GetAccountAtBlockHeightRequest<Address> where
Address: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T
in a tonic::Request
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more