pub struct IpRevResult<'hdr> {
pub code: IpRevResultCode,
pub reason: Option<&'hdr str>,
pub policy_iprev: Option<&'hdr str>,
pub raw: Option<&'hdr str>,
}
Expand description
Parsed iprev=..
Fields§
§code: IpRevResultCode
iprev resultcode
reason: Option<&'hdr str>
reason = ..
policy_iprev: Option<&'hdr str>
iprev policy.iprev = ..
raw: Option<&'hdr str>
unparsed
Trait Implementations§
Source§impl<'hdr> Clone for IpRevResult<'hdr>
impl<'hdr> Clone for IpRevResult<'hdr>
Source§fn clone(&self) -> IpRevResult<'hdr>
fn clone(&self) -> IpRevResult<'hdr>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'hdr> Debug for IpRevResult<'hdr>
impl<'hdr> Debug for IpRevResult<'hdr>
Source§impl<'hdr> Default for IpRevResult<'hdr>
impl<'hdr> Default for IpRevResult<'hdr>
Source§fn default() -> IpRevResult<'hdr>
fn default() -> IpRevResult<'hdr>
Returns the “default value” for a type. Read more
Source§impl<'hdr> PartialEq for IpRevResult<'hdr>
impl<'hdr> PartialEq for IpRevResult<'hdr>
impl<'hdr> StructuralPartialEq for IpRevResult<'hdr>
Auto Trait Implementations§
impl<'hdr> Freeze for IpRevResult<'hdr>
impl<'hdr> RefUnwindSafe for IpRevResult<'hdr>
impl<'hdr> Send for IpRevResult<'hdr>
impl<'hdr> Sync for IpRevResult<'hdr>
impl<'hdr> Unpin for IpRevResult<'hdr>
impl<'hdr> UnwindSafe for IpRevResult<'hdr>
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