pub struct UnifiedUpdateMsg {
pub msg: Vec<String>,
}Expand description
Contains messages related to a UTA status update.
Part of the UTAUpdateStatus, this struct holds a list of messages providing context for the unified margin update. Bots use this to diagnose issues or confirm successful configuration.
Fields§
§msg: Vec<String>A list of update messages.
Contains human-readable messages describing the update outcome or any warnings. Bots should log these for auditing and user feedback.
Trait Implementations§
Source§impl Clone for UnifiedUpdateMsg
impl Clone for UnifiedUpdateMsg
Source§fn clone(&self) -> UnifiedUpdateMsg
fn clone(&self) -> UnifiedUpdateMsg
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 UnifiedUpdateMsg
impl Debug for UnifiedUpdateMsg
Source§impl<'de> Deserialize<'de> for UnifiedUpdateMsg
impl<'de> Deserialize<'de> for UnifiedUpdateMsg
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 UnifiedUpdateMsg
impl RefUnwindSafe for UnifiedUpdateMsg
impl Send for UnifiedUpdateMsg
impl Sync for UnifiedUpdateMsg
impl Unpin for UnifiedUpdateMsg
impl UnsafeUnpin for UnifiedUpdateMsg
impl UnwindSafe for UnifiedUpdateMsg
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