Struct ckb_jsonrpc_types::LocalNodeProtocol
source · pub struct LocalNodeProtocol {
pub id: Uint64,
pub name: String,
pub support_versions: Vec<String>,
}Expand description
The information of a P2P protocol that is supported by the local node.
Fields§
§id: Uint64Unique protocol ID.
name: StringReadable protocol name.
support_versions: Vec<String>Supported versions.
See Semantic Version about how to specify a version.
Trait Implementations§
source§impl Clone for LocalNodeProtocol
impl Clone for LocalNodeProtocol
source§fn clone(&self) -> LocalNodeProtocol
fn clone(&self) -> LocalNodeProtocol
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LocalNodeProtocol
impl Debug for LocalNodeProtocol
source§impl Default for LocalNodeProtocol
impl Default for LocalNodeProtocol
source§fn default() -> LocalNodeProtocol
fn default() -> LocalNodeProtocol
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LocalNodeProtocol
impl<'de> Deserialize<'de> for LocalNodeProtocol
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for LocalNodeProtocol
impl Hash for LocalNodeProtocol
source§impl PartialEq<LocalNodeProtocol> for LocalNodeProtocol
impl PartialEq<LocalNodeProtocol> for LocalNodeProtocol
source§fn eq(&self, other: &LocalNodeProtocol) -> bool
fn eq(&self, other: &LocalNodeProtocol) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LocalNodeProtocol
impl Serialize for LocalNodeProtocol
impl Eq for LocalNodeProtocol
impl StructuralEq for LocalNodeProtocol
impl StructuralPartialEq for LocalNodeProtocol
Auto Trait Implementations§
impl RefUnwindSafe for LocalNodeProtocol
impl Send for LocalNodeProtocol
impl Sync for LocalNodeProtocol
impl Unpin for LocalNodeProtocol
impl UnwindSafe for LocalNodeProtocol
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