pub struct BtcResult {
pub type_: String,
pub optional: bool,
pub required: bool,
pub description: String,
pub skip_type_check: bool,
pub key_name: String,
pub condition: String,
pub inner: Vec<BtcResult>,
}
Expand description
Bitcoin method result specification
Fields§
§type_: String
§optional: bool
§required: bool
§description: String
§skip_type_check: bool
§key_name: String
§condition: String
§inner: Vec<BtcResult>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BtcResult
impl<'de> Deserialize<'de> for BtcResult
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
Auto Trait Implementations§
impl Freeze for BtcResult
impl RefUnwindSafe for BtcResult
impl Send for BtcResult
impl Sync for BtcResult
impl Unpin for BtcResult
impl UnwindSafe for BtcResult
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