Enum ckb_network::SessionType
source · [−]pub enum SessionType {
Outbound,
Inbound,
}Expand description
Indicates the session type
Variants
Outbound
Representing yourself as the active party means that you are the client side
Inbound
Representing yourself as a passive recipient means that you are the server side
Implementations
sourceimpl SessionType
impl SessionType
sourcepub fn is_outbound(self) -> bool
pub fn is_outbound(self) -> bool
is outbound
sourcepub fn is_inbound(self) -> bool
pub fn is_inbound(self) -> bool
is inbound
Trait Implementations
sourceimpl Clone for SessionType
impl Clone for SessionType
sourcefn clone(&self) -> SessionType
fn clone(&self) -> SessionType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SessionType
impl Debug for SessionType
sourceimpl From<SessionType> for SessionType
impl From<SessionType> for SessionType
sourcefn from(ty: SessionType) -> SessionType
fn from(ty: SessionType) -> SessionType
Performs the conversion.
sourceimpl Hash for SessionType
impl Hash for SessionType
sourceimpl PartialEq<SessionType> for SessionType
impl PartialEq<SessionType> for SessionType
impl Copy for SessionType
impl Eq for SessionType
impl StructuralEq for SessionType
impl StructuralPartialEq for SessionType
Auto Trait Implementations
impl RefUnwindSafe for SessionType
impl Send for SessionType
impl Sync for SessionType
impl Unpin for SessionType
impl UnwindSafe for SessionType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more