pub struct SetWalletFlagResponse {
pub flag_name: String,
pub flag_state: bool,
pub warnings: Option<String>,
}Expand description
Response for the SetWalletFlag RPC method
Fields§
§flag_name: StringThe name of the flag that was modified
flag_state: boolThe new state of the flag
warnings: Option<String>Any warnings associated with the change
Trait Implementations§
Source§impl Clone for SetWalletFlagResponse
impl Clone for SetWalletFlagResponse
Source§fn clone(&self) -> SetWalletFlagResponse
fn clone(&self) -> SetWalletFlagResponse
Returns a duplicate 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 SetWalletFlagResponse
impl Debug for SetWalletFlagResponse
Source§impl<'de> Deserialize<'de> for SetWalletFlagResponse
impl<'de> Deserialize<'de> for SetWalletFlagResponse
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 SetWalletFlagResponse
impl PartialEq for SetWalletFlagResponse
Source§impl Serialize for SetWalletFlagResponse
impl Serialize for SetWalletFlagResponse
impl StructuralPartialEq for SetWalletFlagResponse
Auto Trait Implementations§
impl Freeze for SetWalletFlagResponse
impl RefUnwindSafe for SetWalletFlagResponse
impl Send for SetWalletFlagResponse
impl Sync for SetWalletFlagResponse
impl Unpin for SetWalletFlagResponse
impl UnwindSafe for SetWalletFlagResponse
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