Struct libp2p_yamux::Config
source · pub struct Config { /* private fields */ }
Expand description
The yamux configuration.
Implementations§
source§impl Config
impl Config
sourcepub fn client() -> Self
pub fn client() -> Self
Creates a new YamuxConfig
in client mode, regardless of whether
it will be used for an inbound or outbound upgrade.
sourcepub fn server() -> Self
pub fn server() -> Self
Creates a new YamuxConfig
in server mode, regardless of whether
it will be used for an inbound or outbound upgrade.
sourcepub fn set_receive_window_size(&mut self, num_bytes: u32) -> &mut Self
pub fn set_receive_window_size(&mut self, num_bytes: u32) -> &mut Self
Sets the size (in bytes) of the receive window per substream.
sourcepub fn set_max_buffer_size(&mut self, num_bytes: usize) -> &mut Self
pub fn set_max_buffer_size(&mut self, num_bytes: usize) -> &mut Self
Sets the maximum size (in bytes) of the receive buffer per substream.
sourcepub fn set_max_num_streams(&mut self, num_streams: usize) -> &mut Self
pub fn set_max_num_streams(&mut self, num_streams: usize) -> &mut Self
Sets the maximum number of concurrent substreams.
sourcepub fn set_window_update_mode(&mut self, mode: WindowUpdateMode) -> &mut Self
pub fn set_window_update_mode(&mut self, mode: WindowUpdateMode) -> &mut Self
Sets the window update mode that determines when the remote is given new credit for sending more data.
Trait Implementations§
source§impl<C> InboundUpgrade<C> for Configwhere
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
impl<C> InboundUpgrade<C> for Configwhere C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
source§impl<C> OutboundUpgrade<C> for Configwhere
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
impl<C> OutboundUpgrade<C> for Configwhere C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
source§impl UpgradeInfo for Config
impl UpgradeInfo for Config
Auto Trait Implementations§
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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