pub struct LitecoinInput {
pub network: Option<String>,
pub private_key: Option<String>,
}Fields§
§network: Option<String>§private_key: Option<String>Implementations§
Source§impl LitecoinInput
impl LitecoinInput
pub fn new() -> LitecoinInput
Trait Implementations§
Source§impl Clone for LitecoinInput
impl Clone for LitecoinInput
Source§fn clone(&self) -> LitecoinInput
fn clone(&self) -> LitecoinInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LitecoinInput
impl Debug for LitecoinInput
Source§impl Default for LitecoinInput
impl Default for LitecoinInput
Source§fn default() -> LitecoinInput
fn default() -> LitecoinInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LitecoinInput
impl<'de> Deserialize<'de> for LitecoinInput
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 LitecoinInput
impl PartialEq for LitecoinInput
Source§fn eq(&self, other: &LitecoinInput) -> bool
fn eq(&self, other: &LitecoinInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LitecoinInput
impl Serialize for LitecoinInput
impl StructuralPartialEq for LitecoinInput
Auto Trait Implementations§
impl Freeze for LitecoinInput
impl RefUnwindSafe for LitecoinInput
impl Send for LitecoinInput
impl Sync for LitecoinInput
impl Unpin for LitecoinInput
impl UnsafeUnpin for LitecoinInput
impl UnwindSafe for LitecoinInput
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