pub struct CustomRoutingDest {
pub scheme: Scheme,
pub dst_type: DstType,
pub dst_id: String,
}
Fields§
§scheme: Scheme
The network routing logic.
dst_type: DstType
The account the funds are being sent to.
dst_id: String
The ID of the account the funds are being sent to.
Implementations§
Trait Implementations§
Source§impl Clone for CustomRoutingDest
impl Clone for CustomRoutingDest
Source§fn clone(&self) -> CustomRoutingDest
fn clone(&self) -> CustomRoutingDest
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 CustomRoutingDest
impl Debug for CustomRoutingDest
Source§impl Default for CustomRoutingDest
impl Default for CustomRoutingDest
Source§fn default() -> CustomRoutingDest
fn default() -> CustomRoutingDest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomRoutingDest
impl<'de> Deserialize<'de> for CustomRoutingDest
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 PartialEq for CustomRoutingDest
impl PartialEq for CustomRoutingDest
Source§impl Serialize for CustomRoutingDest
impl Serialize for CustomRoutingDest
impl StructuralPartialEq for CustomRoutingDest
Auto Trait Implementations§
impl Freeze for CustomRoutingDest
impl RefUnwindSafe for CustomRoutingDest
impl Send for CustomRoutingDest
impl Sync for CustomRoutingDest
impl Unpin for CustomRoutingDest
impl UnwindSafe for CustomRoutingDest
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