pub struct GetDescriptorInfoResult {
pub descriptor: String,
pub checksum: String,
pub is_range: bool,
pub is_solvable: bool,
pub has_private_keys: bool,
}
Expand description
Models the result of “getdescriptorinfo”
Fields
descriptor: String
checksum: String
is_range: bool
is_solvable: bool
has_private_keys: bool
Trait Implementations
sourceimpl Clone for GetDescriptorInfoResult
impl Clone for GetDescriptorInfoResult
sourcefn clone(&self) -> GetDescriptorInfoResult
fn clone(&self) -> GetDescriptorInfoResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetDescriptorInfoResult
impl Debug for GetDescriptorInfoResult
sourceimpl<'de> Deserialize<'de> for GetDescriptorInfoResult
impl<'de> Deserialize<'de> for GetDescriptorInfoResult
sourcefn 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
sourceimpl PartialEq<GetDescriptorInfoResult> for GetDescriptorInfoResult
impl PartialEq<GetDescriptorInfoResult> for GetDescriptorInfoResult
sourcefn eq(&self, other: &GetDescriptorInfoResult) -> bool
fn eq(&self, other: &GetDescriptorInfoResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for GetDescriptorInfoResult
impl Serialize for GetDescriptorInfoResult
impl Eq for GetDescriptorInfoResult
impl StructuralEq for GetDescriptorInfoResult
impl StructuralPartialEq for GetDescriptorInfoResult
Auto Trait Implementations
impl RefUnwindSafe for GetDescriptorInfoResult
impl Send for GetDescriptorInfoResult
impl Sync for GetDescriptorInfoResult
impl Unpin for GetDescriptorInfoResult
impl UnwindSafe for GetDescriptorInfoResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more