Struct fusionauth_rust_client::models::log_history::LogHistory
source · pub struct LogHistory {
pub history_items: Option<Vec<HistoryItem>>,
}
Expand description
LogHistory : A historical state of a user log event. Since events can be modified, this stores the historical state.
Fields§
§history_items: Option<Vec<HistoryItem>>
Implementations§
source§impl LogHistory
impl LogHistory
sourcepub fn new() -> LogHistory
pub fn new() -> LogHistory
A historical state of a user log event. Since events can be modified, this stores the historical state.
Trait Implementations§
source§impl Clone for LogHistory
impl Clone for LogHistory
source§fn clone(&self) -> LogHistory
fn clone(&self) -> LogHistory
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 LogHistory
impl Debug for LogHistory
source§impl Default for LogHistory
impl Default for LogHistory
source§fn default() -> LogHistory
fn default() -> LogHistory
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LogHistory
impl<'de> Deserialize<'de> for LogHistory
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 PartialEq for LogHistory
impl PartialEq for LogHistory
source§fn eq(&self, other: &LogHistory) -> bool
fn eq(&self, other: &LogHistory) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LogHistory
impl Serialize for LogHistory
impl StructuralPartialEq for LogHistory
Auto Trait Implementations§
impl RefUnwindSafe for LogHistory
impl Send for LogHistory
impl Sync for LogHistory
impl Unpin for LogHistory
impl UnwindSafe for LogHistory
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