pub struct DatabaseSlowLogEntries {
pub entries: Option<Vec<DatabaseSlowLogEntry>>,
pub links: Option<Vec<HashMap<String, Value>>>,
pub extra: Value,
}
Expand description
DatabaseSlowLogEntries
Fields§
§entries: Option<Vec<DatabaseSlowLogEntry>>
§links: Option<Vec<HashMap<String, Value>>>
HATEOAS links
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for DatabaseSlowLogEntries
impl Clone for DatabaseSlowLogEntries
Source§fn clone(&self) -> DatabaseSlowLogEntries
fn clone(&self) -> DatabaseSlowLogEntries
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 DatabaseSlowLogEntries
impl Debug for DatabaseSlowLogEntries
Source§impl<'de> Deserialize<'de> for DatabaseSlowLogEntries
impl<'de> Deserialize<'de> for DatabaseSlowLogEntries
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 DatabaseSlowLogEntries
impl RefUnwindSafe for DatabaseSlowLogEntries
impl Send for DatabaseSlowLogEntries
impl Sync for DatabaseSlowLogEntries
impl Unpin for DatabaseSlowLogEntries
impl UnwindSafe for DatabaseSlowLogEntries
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