pub struct SnmpPdu<'a> {
pub message_type: SnmpMessageType,
pub req_id: i32,
pub error_status: u32,
pub error_index: u32,
pub varbinds: Varbinds<'a>,
/* private fields */
}
Fields§
§message_type: SnmpMessageType
§req_id: i32
§error_status: u32
§error_index: u32
§varbinds: Varbinds<'a>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SnmpPdu<'a>
impl<'a> RefUnwindSafe for SnmpPdu<'a>
impl<'a> Send for SnmpPdu<'a>
impl<'a> Sync for SnmpPdu<'a>
impl<'a> Unpin for SnmpPdu<'a>
impl<'a> UnwindSafe for SnmpPdu<'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