Struct libp2p::yamux::YamuxConfig [−][src]
pub struct YamuxConfig { /* fields omitted */ }
The yamux configuration.
Implementations
impl YamuxConfig
[src]
impl YamuxConfig
[src]pub fn client() -> YamuxConfig
[src]
Creates a new YamuxConfig
in client mode, regardless of whether
it will be used for an inbound or outbound upgrade.
pub fn server() -> YamuxConfig
[src]
Creates a new YamuxConfig
in server mode, regardless of whether
it will be used for an inbound or outbound upgrade.
pub fn set_receive_window_size(&mut self, num_bytes: u32) -> &mut YamuxConfig
[src]
Sets the size (in bytes) of the receive window per substream.
pub fn set_max_buffer_size(&mut self, num_bytes: usize) -> &mut YamuxConfig
[src]
Sets the maximum size (in bytes) of the receive buffer per substream.
pub fn set_max_num_streams(&mut self, num_streams: usize) -> &mut YamuxConfig
[src]
Sets the maximum number of concurrent substreams.
pub fn set_window_update_mode(
&mut self,
mode: WindowUpdateMode
) -> &mut YamuxConfig
[src]
&mut self,
mode: WindowUpdateMode
) -> &mut YamuxConfig
Sets the window update mode that determines when the remote is given new credit for sending more data.
pub fn into_local(self) -> YamuxLocalConfig
[src]
Converts the config into a YamuxLocalConfig
for use with upgrades
of I/O streams that are .
Trait Implementations
impl Clone for YamuxConfig
[src]
impl Clone for YamuxConfig
[src]pub fn clone(&self) -> YamuxConfig
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for YamuxConfig
[src]
impl Default for YamuxConfig
[src]pub fn default() -> YamuxConfig
[src]
impl<C> InboundUpgrade<C> for YamuxConfig where
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
[src]
impl<C> InboundUpgrade<C> for YamuxConfig where
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
[src]type Output = Yamux<Incoming<C>>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = Error
Possible error during the handshake.
type Future = Ready<Result<<YamuxConfig as InboundUpgrade<C>>::Output, <YamuxConfig as InboundUpgrade<C>>::Error>>
Future that performs the handshake with the remote.
pub fn upgrade_inbound(
self,
io: C,
<YamuxConfig as UpgradeInfo>::Info
) -> <YamuxConfig as InboundUpgrade<C>>::Future
[src]
self,
io: C,
<YamuxConfig as UpgradeInfo>::Info
) -> <YamuxConfig as InboundUpgrade<C>>::Future
impl<C> OutboundUpgrade<C> for YamuxConfig where
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
[src]
impl<C> OutboundUpgrade<C> for YamuxConfig where
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
[src]type Output = Yamux<Incoming<C>>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = Error
Possible error during the handshake.
type Future = Ready<Result<<YamuxConfig as OutboundUpgrade<C>>::Output, <YamuxConfig as OutboundUpgrade<C>>::Error>>
Future that performs the handshake with the remote.
pub fn upgrade_outbound(
self,
io: C,
<YamuxConfig as UpgradeInfo>::Info
) -> <YamuxConfig as OutboundUpgrade<C>>::Future
[src]
self,
io: C,
<YamuxConfig as UpgradeInfo>::Info
) -> <YamuxConfig as OutboundUpgrade<C>>::Future
impl UpgradeInfo for YamuxConfig
[src]
impl UpgradeInfo for YamuxConfig
[src]type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Once<<YamuxConfig as UpgradeInfo>::Info>
Iterator returned by protocol_info
.
pub fn protocol_info(&self) -> <YamuxConfig as UpgradeInfo>::InfoIter
[src]
Auto Trait Implementations
impl RefUnwindSafe for YamuxConfig
impl Send for YamuxConfig
impl Sync for YamuxConfig
impl Unpin for YamuxConfig
impl UnwindSafe for YamuxConfig
Blanket Implementations
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]pub fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]pub fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,