pub struct SocketEventColumns<'a> {
pub time: &'a str,
pub success: &'a str,
pub remote_port: &'a str,
pub action: &'a str,
pub auid: &'a str,
pub family: &'a str,
pub local_address: &'a str,
pub local_port: &'a str,
pub path: &'a str,
pub pid: &'a str,
pub remote_address: &'a str,
pub decorations: Option<HashMap<&'a str, &'a str>>,
}
Fields§
§time: &'a str
§success: &'a str
§remote_port: &'a str
§action: &'a str
§auid: &'a str
§family: &'a str
§local_address: &'a str
§local_port: &'a str
§path: &'a str
§pid: &'a str
§remote_address: &'a str
§decorations: Option<HashMap<&'a str, &'a str>>
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for SocketEventColumns<'a>
impl<'de: 'a, 'a> Deserialize<'de> for SocketEventColumns<'a>
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<'a> Freeze for SocketEventColumns<'a>
impl<'a> RefUnwindSafe for SocketEventColumns<'a>
impl<'a> Send for SocketEventColumns<'a>
impl<'a> Sync for SocketEventColumns<'a>
impl<'a> Unpin for SocketEventColumns<'a>
impl<'a> UnwindSafe for SocketEventColumns<'a>
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