pub struct EstimateInboundMessageFeeRequest {
pub origin_mailbox: String,
pub checkpoint_root: String,
pub message: Box<EstimateInboundMessageFeeRequestMessage>,
pub signatures: Vec<String>,
}
Fields§
§origin_mailbox: String
§checkpoint_root: String
§message: Box<EstimateInboundMessageFeeRequestMessage>
§signatures: Vec<String>
Implementations§
Source§impl EstimateInboundMessageFeeRequest
impl EstimateInboundMessageFeeRequest
pub fn new( origin_mailbox: String, checkpoint_root: String, message: EstimateInboundMessageFeeRequestMessage, signatures: Vec<String>, ) -> EstimateInboundMessageFeeRequest
Trait Implementations§
Source§impl Clone for EstimateInboundMessageFeeRequest
impl Clone for EstimateInboundMessageFeeRequest
Source§fn clone(&self) -> EstimateInboundMessageFeeRequest
fn clone(&self) -> EstimateInboundMessageFeeRequest
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 Default for EstimateInboundMessageFeeRequest
impl Default for EstimateInboundMessageFeeRequest
Source§fn default() -> EstimateInboundMessageFeeRequest
fn default() -> EstimateInboundMessageFeeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EstimateInboundMessageFeeRequest
impl<'de> Deserialize<'de> for EstimateInboundMessageFeeRequest
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
Source§impl PartialEq for EstimateInboundMessageFeeRequest
impl PartialEq for EstimateInboundMessageFeeRequest
Source§fn eq(&self, other: &EstimateInboundMessageFeeRequest) -> bool
fn eq(&self, other: &EstimateInboundMessageFeeRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EstimateInboundMessageFeeRequest
Auto Trait Implementations§
impl Freeze for EstimateInboundMessageFeeRequest
impl RefUnwindSafe for EstimateInboundMessageFeeRequest
impl Send for EstimateInboundMessageFeeRequest
impl Sync for EstimateInboundMessageFeeRequest
impl Unpin for EstimateInboundMessageFeeRequest
impl UnwindSafe for EstimateInboundMessageFeeRequest
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