pub struct UpdateConfigMsg {
pub owner: Option<String>,
pub fee_collector: Option<String>,
pub minimum_reward: Option<Uint128>,
pub creation_fee_percentage: Option<Uint64>,
pub cancellation_fee_percentage: Option<Uint64>,
pub t_max: Option<Uint64>,
pub t_min: Option<Uint64>,
pub a_max: Option<Uint128>,
pub a_min: Option<Uint128>,
pub q_max: Option<Uint64>,
}
Fields§
§owner: Option<String>
§fee_collector: Option<String>
§minimum_reward: Option<Uint128>
§creation_fee_percentage: Option<Uint64>
§cancellation_fee_percentage: Option<Uint64>
§t_max: Option<Uint64>
§t_min: Option<Uint64>
§a_max: Option<Uint128>
§a_min: Option<Uint128>
§q_max: Option<Uint64>
Trait Implementations§
Source§impl Clone for UpdateConfigMsg
impl Clone for UpdateConfigMsg
Source§fn clone(&self) -> UpdateConfigMsg
fn clone(&self) -> UpdateConfigMsg
Returns a copy 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 UpdateConfigMsg
impl Debug for UpdateConfigMsg
Source§impl<'de> Deserialize<'de> for UpdateConfigMsg
impl<'de> Deserialize<'de> for UpdateConfigMsg
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 JsonSchema for UpdateConfigMsg
impl JsonSchema for UpdateConfigMsg
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for UpdateConfigMsg
impl PartialEq for UpdateConfigMsg
Source§impl Serialize for UpdateConfigMsg
impl Serialize for UpdateConfigMsg
impl StructuralPartialEq for UpdateConfigMsg
Auto Trait Implementations§
impl Freeze for UpdateConfigMsg
impl RefUnwindSafe for UpdateConfigMsg
impl Send for UpdateConfigMsg
impl Sync for UpdateConfigMsg
impl Unpin for UpdateConfigMsg
impl UnwindSafe for UpdateConfigMsg
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