pub struct UTAUpdateStatus {
pub unified_update_status: String,
pub unified_update_msg: UnifiedUpdateMsg,
}Expand description
Details the result of a UTA status update.
Part of the UTAResponse, this struct provides the updated unified margin status and any associated messages. Bots use this to confirm the account’s margin configuration.
Fields§
§unified_update_status: StringThe unified margin update status.
Indicates the new status of the unified margin setting (e.g., “Enabled”). Bots should verify this matches the requested configuration.
unified_update_msg: UnifiedUpdateMsgAdditional messages related to the update.
Contains any warnings or informational messages about the status change. Bots should log these for auditing and debugging.
Trait Implementations§
Source§impl Clone for UTAUpdateStatus
impl Clone for UTAUpdateStatus
Source§fn clone(&self) -> UTAUpdateStatus
fn clone(&self) -> UTAUpdateStatus
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 UTAUpdateStatus
impl Debug for UTAUpdateStatus
Source§impl<'de> Deserialize<'de> for UTAUpdateStatus
impl<'de> Deserialize<'de> for UTAUpdateStatus
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 UTAUpdateStatus
impl RefUnwindSafe for UTAUpdateStatus
impl Send for UTAUpdateStatus
impl Sync for UTAUpdateStatus
impl Unpin for UTAUpdateStatus
impl UnsafeUnpin for UTAUpdateStatus
impl UnwindSafe for UTAUpdateStatus
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