pub struct HistoryContent {
pub status: Status,
pub history: Vec<Value>,
}
Expand description
Content when asking for history entries.
Fields§
§status: Status
Status of the request.
history: Vec<Value>
List of history items.
Trait Implementations§
Source§impl Debug for HistoryContent
impl Debug for HistoryContent
Source§impl<'de> Deserialize<'de> for HistoryContent
impl<'de> Deserialize<'de> for HistoryContent
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 HistoryContent
impl RefUnwindSafe for HistoryContent
impl Send for HistoryContent
impl Sync for HistoryContent
impl Unpin for HistoryContent
impl UnwindSafe for HistoryContent
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