pub struct CcipLaneConfig {
pub source_chain_id: String,
pub destination_chain_id: String,
pub router_address: String,
pub max_payload_bytes: usize,
pub max_execution_gas: u64,
pub expected_latency_secs: u64,
}Fields§
§source_chain_id: String§destination_chain_id: String§router_address: String§max_payload_bytes: usize§max_execution_gas: u64§expected_latency_secs: u64Trait Implementations§
Source§impl Clone for CcipLaneConfig
impl Clone for CcipLaneConfig
Source§fn clone(&self) -> CcipLaneConfig
fn clone(&self) -> CcipLaneConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CcipLaneConfig
impl Debug for CcipLaneConfig
Source§impl<'de> Deserialize<'de> for CcipLaneConfig
impl<'de> Deserialize<'de> for CcipLaneConfig
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
impl Eq for CcipLaneConfig
Source§impl PartialEq for CcipLaneConfig
impl PartialEq for CcipLaneConfig
Source§impl Serialize for CcipLaneConfig
impl Serialize for CcipLaneConfig
impl StructuralPartialEq for CcipLaneConfig
Auto Trait Implementations§
impl Freeze for CcipLaneConfig
impl RefUnwindSafe for CcipLaneConfig
impl Send for CcipLaneConfig
impl Sync for CcipLaneConfig
impl Unpin for CcipLaneConfig
impl UnsafeUnpin for CcipLaneConfig
impl UnwindSafe for CcipLaneConfig
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