Struct ChannelEnd
pub struct ChannelEnd {
pub state: State,
pub ordering: Order,
pub remote: Counterparty,
pub connection_hops: Vec<ConnectionId>,
pub version: Version,
pub upgrade_sequence: u64,
}
Fields§
§state: State
§ordering: Order
§remote: Counterparty
§connection_hops: Vec<ConnectionId>
§version: Version
§upgrade_sequence: u64
Implementations§
§impl ChannelEnd
impl ChannelEnd
pub fn new(
state: State,
ordering: Order,
remote: Counterparty,
connection_hops: Vec<ConnectionId>,
version: Version,
upgrade_sequence: u64,
) -> ChannelEnd
pub fn new( state: State, ordering: Order, remote: Counterparty, connection_hops: Vec<ConnectionId>, version: Version, upgrade_sequence: u64, ) -> ChannelEnd
Creates a new ChannelEnd in state Uninitialized and other fields parametrized.
pub fn set_version(&mut self, v: Version)
pub fn set_counterparty_channel_id(&mut self, c: ChannelId)
pub fn is_open(&self) -> bool
pub fn is_open(&self) -> bool
Returns true
if this ChannelEnd
is in state State::Open
.
pub fn state(&self) -> &State
pub fn ordering(&self) -> &Order
pub fn counterparty(&self) -> &Counterparty
pub fn connection_hops(&self) -> &Vec<ConnectionId>
pub fn version(&self) -> &Version
pub fn validate_basic(&self) -> Result<(), ChannelError>
pub fn state_matches(&self, other: &State) -> bool
pub fn state_matches(&self, other: &State) -> bool
Helper function to compare the state of this end with another state.
pub fn order_matches(&self, other: &Order) -> bool
pub fn order_matches(&self, other: &Order) -> bool
Helper function to compare the order of this end with another order.
pub fn connection_hops_matches(&self, other: &Vec<ConnectionId>) -> bool
pub fn counterparty_matches(&self, other: &Counterparty) -> bool
pub fn version_matches(&self, other: &Version) -> bool
Trait Implementations§
§impl Clone for ChannelEnd
impl Clone for ChannelEnd
§fn clone(&self) -> ChannelEnd
fn clone(&self) -> ChannelEnd
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 more§impl Debug for ChannelEnd
impl Debug for ChannelEnd
§impl Default for ChannelEnd
impl Default for ChannelEnd
§fn default() -> ChannelEnd
fn default() -> ChannelEnd
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for ChannelEnd
impl<'de> Deserialize<'de> for ChannelEnd
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChannelEnd, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChannelEnd, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for ChannelEnd
impl PartialEq for ChannelEnd
§impl Protobuf<Channel> for ChannelEnd
impl Protobuf<Channel> for ChannelEnd
§fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode into a buffer in Protobuf format. Read more
§fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode with a length-delimiter to a buffer in Protobuf format. Read more
§fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode an instance from a buffer. Read more
§fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode a length-delimited instance from
the buffer. Read more
§fn encoded_len(self) -> usize
fn encoded_len(self) -> usize
Returns the encoded length of the message without a length delimiter. Read more
§fn encode_vec(self) -> Vec<u8> ⓘ
fn encode_vec(self) -> Vec<u8> ⓘ
Encodes into a Protobuf-encoded
Vec<u8>
.§fn decode_vec(v: &[u8]) -> Result<Self, Error>
fn decode_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance from a
Vec<u8>
(or equivalent).§fn encode_length_delimited_vec(self) -> Vec<u8> ⓘ
fn encode_length_delimited_vec(self) -> Vec<u8> ⓘ
Encode with a length-delimiter to a
Vec<u8>
Protobuf-encoded message.§fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance with a
length-delimiter from a
Vec<u8>
or equivalent.§impl Serialize for ChannelEnd
impl Serialize for ChannelEnd
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl TryFrom<Channel> for ChannelEnd
impl TryFrom<Channel> for ChannelEnd
§type Error = ChannelError
type Error = ChannelError
The type returned in the event of a conversion error.
§fn try_from(
value: Channel,
) -> Result<ChannelEnd, <ChannelEnd as TryFrom<Channel>>::Error>
fn try_from( value: Channel, ) -> Result<ChannelEnd, <ChannelEnd as TryFrom<Channel>>::Error>
Performs the conversion.
impl Eq for ChannelEnd
impl StructuralPartialEq for ChannelEnd
Auto Trait Implementations§
impl Freeze for ChannelEnd
impl RefUnwindSafe for ChannelEnd
impl Send for ChannelEnd
impl Sync for ChannelEnd
impl Unpin for ChannelEnd
impl UnwindSafe for ChannelEnd
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request