Struct libp2p_rs::core::upgrade::DummyUpgrader [−][src]
pub struct DummyUpgrader;
Implementation of dummy Upgrader
that doesn’t do anything practice.
Useful for testing purposes.
Implementations
impl DummyUpgrader
[src]
pub fn new() -> DummyUpgrader
[src]
Builds a new DummyUpgrader
.
Trait Implementations
impl Clone for DummyUpgrader
[src]
pub fn clone(&self) -> DummyUpgrader
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for DummyUpgrader
[src]
impl Default for DummyUpgrader
[src]
pub fn default() -> DummyUpgrader
[src]
impl UpgradeInfo for DummyUpgrader
[src]
type Info = &'static [u8]
Opaque type representing a negotiable protocol.
pub fn protocol_info(&self) -> Vec<<DummyUpgrader as UpgradeInfo>::Info, Global>
[src]
impl<T> Upgrader<T> for DummyUpgrader where
T: 'static + Send,
[src]
T: 'static + Send,
type Output = DummyStream<T>
Output after the upgrade has been successfully negotiated and the handshake performed.
pub fn upgrade_inbound<'async_trait>(
self,
socket: T,
_info: <DummyUpgrader as UpgradeInfo>::Info
) -> Pin<Box<dyn Future<Output = Result<<DummyUpgrader as Upgrader<T>>::Output, TransportError>> + 'async_trait + Send, Global>> where
DummyUpgrader: 'async_trait,
[src]
self,
socket: T,
_info: <DummyUpgrader as UpgradeInfo>::Info
) -> Pin<Box<dyn Future<Output = Result<<DummyUpgrader as Upgrader<T>>::Output, TransportError>> + 'async_trait + Send, Global>> where
DummyUpgrader: 'async_trait,
pub fn upgrade_outbound<'async_trait>(
self,
socket: T,
_info: <DummyUpgrader as UpgradeInfo>::Info
) -> Pin<Box<dyn Future<Output = Result<<DummyUpgrader as Upgrader<T>>::Output, TransportError>> + 'async_trait + Send, Global>> where
DummyUpgrader: 'async_trait,
[src]
self,
socket: T,
_info: <DummyUpgrader as UpgradeInfo>::Info
) -> Pin<Box<dyn Future<Output = Result<<DummyUpgrader as Upgrader<T>>::Output, TransportError>> + 'async_trait + Send, Global>> where
DummyUpgrader: 'async_trait,
Auto Trait Implementations
impl RefUnwindSafe for DummyUpgrader
impl Send for DummyUpgrader
impl Sync for DummyUpgrader
impl Unpin for DummyUpgrader
impl UnwindSafe for DummyUpgrader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,