pub struct SetconfigConfig {
pub plugin: Option<String>,
pub set: Option<bool>,
pub source: Option<String>,
pub value_bool: Option<bool>,
pub value_int: Option<i64>,
pub value_msat: Option<Amount>,
pub value_str: Option<String>,
pub sources: Option<Vec<String>>,
pub values_str: Option<Vec<String>>,
pub config: String,
pub dynamic: bool,
}Fields§
§plugin: Option<String>§set: Option<bool>§source: Option<String>§value_bool: Option<bool>§value_int: Option<i64>§value_msat: Option<Amount>§value_str: Option<String>§sources: Option<Vec<String>>§values_str: Option<Vec<String>>§config: String§dynamic: boolTrait Implementations§
Source§impl Clone for SetconfigConfig
impl Clone for SetconfigConfig
Source§fn clone(&self) -> SetconfigConfig
fn clone(&self) -> SetconfigConfig
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 SetconfigConfig
impl Debug for SetconfigConfig
Source§impl<'de> Deserialize<'de> for SetconfigConfig
impl<'de> Deserialize<'de> for SetconfigConfig
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 SetconfigConfig
impl RefUnwindSafe for SetconfigConfig
impl Send for SetconfigConfig
impl Sync for SetconfigConfig
impl Unpin for SetconfigConfig
impl UnsafeUnpin for SetconfigConfig
impl UnwindSafe for SetconfigConfig
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