Struct redis_graph::SlowLogEntry [−][src]
Represents an entry returned from the GRAPH.SLOWLOG command.
Fields
timestamp: u64A unix timestamp at which the log entry was processed.
command: StringThe issued command.
query: StringThe issued query.
time: f64The amount of time needed for its execution, in milliseconds.
Trait Implementations
impl Clone for SlowLogEntry[src]
fn clone(&self) -> SlowLogEntry[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SlowLogEntry[src]
impl Default for SlowLogEntry[src]
fn default() -> SlowLogEntry[src]
impl FromRedisValue for SlowLogEntry[src]
fn from_redis_value(v: &Value) -> RedisResult<Self>[src]
pub fn from_redis_values(
items: &[Value]
) -> Result<Vec<Self, Global>, RedisError>[src]
items: &[Value]
) -> Result<Vec<Self, Global>, RedisError>
Auto Trait Implementations
impl RefUnwindSafe for SlowLogEntry[src]
impl Send for SlowLogEntry[src]
impl Sync for SlowLogEntry[src]
impl Unpin for SlowLogEntry[src]
impl UnwindSafe for SlowLogEntry[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,