pub struct IkeV2Payload<'a> {
pub hdr: IkeV2PayloadHeader,
pub content: IkeV2PayloadContent<'a>,
}
Expand description
IKE Message Payload
Defined in RFC7296 section 3
Fields§
§hdr: IkeV2PayloadHeader
§content: IkeV2PayloadContent<'a>
Trait Implementations§
Source§impl<'a> Debug for IkeV2Payload<'a>
impl<'a> Debug for IkeV2Payload<'a>
Source§impl<'a> PartialEq for IkeV2Payload<'a>
impl<'a> PartialEq for IkeV2Payload<'a>
impl<'a> StructuralPartialEq for IkeV2Payload<'a>
Auto Trait Implementations§
impl<'a> Freeze for IkeV2Payload<'a>
impl<'a> RefUnwindSafe for IkeV2Payload<'a>
impl<'a> Send for IkeV2Payload<'a>
impl<'a> Sync for IkeV2Payload<'a>
impl<'a> Unpin for IkeV2Payload<'a>
impl<'a> UnwindSafe for IkeV2Payload<'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