pub struct HrmpChannelConfigBuilder<State> { /* private fields */ }
Expand description
HRMP channel configuration builder, used to build an HrmpChannelConfig
declaratively with fields validation.
Implementations§
Source§impl HrmpChannelConfigBuilder<Initial>
impl HrmpChannelConfigBuilder<Initial>
pub fn new() -> Self
Sourcepub fn with_sender(self, sender: ParaId) -> HrmpChannelConfigBuilder<WithSender>
pub fn with_sender(self, sender: ParaId) -> HrmpChannelConfigBuilder<WithSender>
Set the sending parachain ID.
Source§impl HrmpChannelConfigBuilder<WithSender>
impl HrmpChannelConfigBuilder<WithSender>
Sourcepub fn with_recipient(
self,
recipient: ParaId,
) -> HrmpChannelConfigBuilder<WithRecipient>
pub fn with_recipient( self, recipient: ParaId, ) -> HrmpChannelConfigBuilder<WithRecipient>
Set the receiving parachain ID.
Source§impl HrmpChannelConfigBuilder<WithRecipient>
impl HrmpChannelConfigBuilder<WithRecipient>
Sourcepub fn with_max_capacity(self, max_capacity: u32) -> Self
pub fn with_max_capacity(self, max_capacity: u32) -> Self
Set the max capacity of messages in the channel.
Sourcepub fn with_max_message_size(self, max_message_size: u32) -> Self
pub fn with_max_message_size(self, max_message_size: u32) -> Self
Set the maximum size of a message in the channel.
pub fn build(self) -> HrmpChannelConfig
Trait Implementations§
Auto Trait Implementations§
impl<State> Freeze for HrmpChannelConfigBuilder<State>
impl<State> RefUnwindSafe for HrmpChannelConfigBuilder<State>where
State: RefUnwindSafe,
impl<State> Send for HrmpChannelConfigBuilder<State>where
State: Send,
impl<State> Sync for HrmpChannelConfigBuilder<State>where
State: Sync,
impl<State> Unpin for HrmpChannelConfigBuilder<State>where
State: Unpin,
impl<State> UnwindSafe for HrmpChannelConfigBuilder<State>where
State: UnwindSafe,
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