pub struct ChannelsVariables {
pub concrete_channel_id: Option<String>,
pub destination_key_id: Option<i32>,
pub source_key_id: Option<i32>,
pub safe_address: Option<String>,
pub status: Option<ChannelStatus>,
}Fields§
§concrete_channel_id: Option<String>§destination_key_id: Option<i32>§source_key_id: Option<i32>§safe_address: Option<String>§status: Option<ChannelStatus>Trait Implementations§
Source§impl Default for ChannelsVariables
impl Default for ChannelsVariables
Source§fn default() -> ChannelsVariables
fn default() -> ChannelsVariables
Returns the “default value” for a type. Read more
Source§impl From<ChannelSelector> for ChannelsVariables
impl From<ChannelSelector> for ChannelsVariables
Source§fn from(value: ChannelSelector) -> Self
fn from(value: ChannelSelector) -> Self
Converts to this type from the input type.
Source§impl QueryVariables for ChannelsVariables
impl QueryVariables for ChannelsVariables
Auto Trait Implementations§
impl Freeze for ChannelsVariables
impl RefUnwindSafe for ChannelsVariables
impl Send for ChannelsVariables
impl Sync for ChannelsVariables
impl Unpin for ChannelsVariables
impl UnsafeUnpin for ChannelsVariables
impl UnwindSafe for ChannelsVariables
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more