[][src]Struct sawtooth_sdk::messages::processor::TpProcessRequest

pub struct TpProcessRequest {
    pub header: SingularPtrField<TransactionHeader>,
    pub payload: Vec<u8>,
    pub signature: String,
    pub context_id: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

header: SingularPtrField<TransactionHeader>payload: Vec<u8>signature: Stringcontext_id: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl TpProcessRequest[src]

pub fn new() -> TpProcessRequest[src]

pub fn get_header(&self) -> &TransactionHeader[src]

pub fn clear_header(&mut self)[src]

pub fn has_header(&self) -> bool[src]

pub fn set_header(&mut self, v: TransactionHeader)[src]

pub fn mut_header(&mut self) -> &mut TransactionHeader[src]

pub fn take_header(&mut self) -> TransactionHeader[src]

pub fn get_payload(&self) -> &[u8][src]

pub fn clear_payload(&mut self)[src]

pub fn set_payload(&mut self, v: Vec<u8>)[src]

pub fn mut_payload(&mut self) -> &mut Vec<u8>[src]

pub fn take_payload(&mut self) -> Vec<u8>[src]

pub fn get_signature(&self) -> &str[src]

pub fn clear_signature(&mut self)[src]

pub fn set_signature(&mut self, v: String)[src]

pub fn mut_signature(&mut self) -> &mut String[src]

pub fn take_signature(&mut self) -> String[src]

pub fn get_context_id(&self) -> &str[src]

pub fn clear_context_id(&mut self)[src]

pub fn set_context_id(&mut self, v: String)[src]

pub fn mut_context_id(&mut self) -> &mut String[src]

pub fn take_context_id(&mut self) -> String[src]

Trait Implementations

impl Default for TpProcessRequest[src]

impl<'a> Default for &'a TpProcessRequest[src]

impl Clone for TpProcessRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<TpProcessRequest> for TpProcessRequest[src]

impl Debug for TpProcessRequest[src]

impl Message for TpProcessRequest[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for TpProcessRequest[src]

impl ProtobufValue for TpProcessRequest[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

fn is_non_zero(&self) -> bool[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]