pub struct UncheckedChannelEntry {
pub connected_chain: String,
pub protocol: String,
}
Expand description
Key to get the Address of a connected_chain
Fields§
§connected_chain: String
§protocol: String
Implementations§
Trait Implementations§
source§impl Clone for UncheckedChannelEntry
impl Clone for UncheckedChannelEntry
source§fn clone(&self) -> UncheckedChannelEntry
fn clone(&self) -> UncheckedChannelEntry
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 UncheckedChannelEntry
impl Debug for UncheckedChannelEntry
source§impl<'de> Deserialize<'de> for UncheckedChannelEntry
impl<'de> Deserialize<'de> for UncheckedChannelEntry
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 JsonSchema for UncheckedChannelEntry
impl JsonSchema for UncheckedChannelEntry
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl Ord for UncheckedChannelEntry
impl Ord for UncheckedChannelEntry
source§fn cmp(&self, other: &UncheckedChannelEntry) -> Ordering
fn cmp(&self, other: &UncheckedChannelEntry) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<UncheckedChannelEntry> for UncheckedChannelEntry
impl PartialEq<UncheckedChannelEntry> for UncheckedChannelEntry
source§fn eq(&self, other: &UncheckedChannelEntry) -> bool
fn eq(&self, other: &UncheckedChannelEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<UncheckedChannelEntry> for UncheckedChannelEntry
impl PartialOrd<UncheckedChannelEntry> for UncheckedChannelEntry
source§fn partial_cmp(&self, other: &UncheckedChannelEntry) -> Option<Ordering>
fn partial_cmp(&self, other: &UncheckedChannelEntry) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for UncheckedChannelEntry
impl Serialize for UncheckedChannelEntry
source§impl TryFrom<String> for UncheckedChannelEntry
impl TryFrom<String> for UncheckedChannelEntry
impl Eq for UncheckedChannelEntry
impl StructuralEq for UncheckedChannelEntry
impl StructuralPartialEq for UncheckedChannelEntry
Auto Trait Implementations§
impl RefUnwindSafe for UncheckedChannelEntry
impl Send for UncheckedChannelEntry
impl Sync for UncheckedChannelEntry
impl Unpin for UncheckedChannelEntry
impl UnwindSafe for UncheckedChannelEntry
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