pub struct LogsResponse {
pub logs: Vec<LogEntry>,
pub total: usize,
pub limit: usize,
pub offset: usize,
}Expand description
Response for log listing
Fields§
§logs: Vec<LogEntry>§total: usize§limit: usize§offset: usizeTrait Implementations§
Source§impl Clone for LogsResponse
impl Clone for LogsResponse
Source§fn clone(&self) -> LogsResponse
fn clone(&self) -> LogsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogsResponse
impl Debug for LogsResponse
Source§impl<'de> Deserialize<'de> for LogsResponse
impl<'de> Deserialize<'de> for LogsResponse
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 LogsResponse
impl RefUnwindSafe for LogsResponse
impl Send for LogsResponse
impl Sync for LogsResponse
impl Unpin for LogsResponse
impl UnsafeUnpin for LogsResponse
impl UnwindSafe for LogsResponse
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