pub struct ZabbixApiRequest<T: Serialize> {
pub jsonrpc: String,
pub method: String,
pub params: T,
pub id: i8,
}
Fields§
§jsonrpc: String
§method: String
§params: T
§id: i8
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ZabbixApiRequest<T>where
T: Freeze,
impl<T> RefUnwindSafe for ZabbixApiRequest<T>where
T: RefUnwindSafe,
impl<T> Send for ZabbixApiRequest<T>where
T: Send,
impl<T> Sync for ZabbixApiRequest<T>where
T: Sync,
impl<T> Unpin for ZabbixApiRequest<T>where
T: Unpin,
impl<T> UnwindSafe for ZabbixApiRequest<T>where
T: UnwindSafe,
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