pub struct LogListItem {
pub id: String,
pub created: String,
pub updated: String,
pub url: String,
pub method: String,
pub status: i32,
pub ip: Option<String>,
pub referer: String,
pub user_agent: String,
pub meta: HashMap<String, String>,
}Fields§
§id: String§created: String§updated: String§url: String§method: String§status: i32§ip: Option<String>§referer: String§user_agent: String§meta: HashMap<String, String>Trait Implementations§
Source§impl Clone for LogListItem
impl Clone for LogListItem
Source§fn clone(&self) -> LogListItem
fn clone(&self) -> LogListItem
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 LogListItem
impl Debug for LogListItem
Source§impl<'de> Deserialize<'de> for LogListItem
impl<'de> Deserialize<'de> for LogListItem
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 LogListItem
impl RefUnwindSafe for LogListItem
impl Send for LogListItem
impl Sync for LogListItem
impl Unpin for LogListItem
impl UnsafeUnpin for LogListItem
impl UnwindSafe for LogListItem
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