pub struct GetItemsRequestByKey<R> {
pub output: String,
pub with_triggers: bool,
pub search: R,
pub sort_field: String,
}
Expand description
API: https://www.zabbix.com/documentation/6.0/en/manual/api/reference/item/get
Fields§
§output: String
§with_triggers: bool
§search: R
§sort_field: String
Implementations§
Source§impl GetItemsRequestByKey<SearchByKey>
impl GetItemsRequestByKey<SearchByKey>
pub fn new(key: &str) -> GetItemsRequestByKey<SearchByKey>
Trait Implementations§
Source§impl<R: Debug> Debug for GetItemsRequestByKey<R>
impl<R: Debug> Debug for GetItemsRequestByKey<R>
Auto Trait Implementations§
impl<R> Freeze for GetItemsRequestByKey<R>where
R: Freeze,
impl<R> RefUnwindSafe for GetItemsRequestByKey<R>where
R: RefUnwindSafe,
impl<R> Send for GetItemsRequestByKey<R>where
R: Send,
impl<R> Sync for GetItemsRequestByKey<R>where
R: Sync,
impl<R> Unpin for GetItemsRequestByKey<R>where
R: Unpin,
impl<R> UnwindSafe for GetItemsRequestByKey<R>where
R: 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