pub enum JournalSockoptionV1Resolver {
Show 27 variants
Noop,
ReusePort,
ReuseAddr,
NoDelay,
DontRoute,
OnlyV6,
Broadcast,
MulticastLoopV4,
MulticastLoopV6,
Promiscuous,
Listening,
LastError,
KeepAlive,
Linger,
OobInline,
RecvBufSize,
SendBufSize,
RecvLowat,
SendLowat,
RecvTimeout,
SendTimeout,
ConnectTimeout,
AcceptTimeout,
Ttl,
MulticastTtlV4,
Type,
Proto,
}
Expand description
The resolver for an archived JournalSockoptionV1
Variants§
Noop
The resolver for JournalSockoptionV1::Noop
ReusePort
The resolver for JournalSockoptionV1::ReusePort
ReuseAddr
The resolver for JournalSockoptionV1::ReuseAddr
NoDelay
The resolver for JournalSockoptionV1::NoDelay
DontRoute
The resolver for JournalSockoptionV1::DontRoute
OnlyV6
The resolver for JournalSockoptionV1::OnlyV6
Broadcast
The resolver for JournalSockoptionV1::Broadcast
MulticastLoopV4
The resolver for JournalSockoptionV1::MulticastLoopV4
MulticastLoopV6
The resolver for JournalSockoptionV1::MulticastLoopV6
Promiscuous
The resolver for JournalSockoptionV1::Promiscuous
Listening
The resolver for JournalSockoptionV1::Listening
LastError
The resolver for JournalSockoptionV1::LastError
KeepAlive
The resolver for JournalSockoptionV1::KeepAlive
Linger
The resolver for JournalSockoptionV1::Linger
OobInline
The resolver for JournalSockoptionV1::OobInline
RecvBufSize
The resolver for JournalSockoptionV1::RecvBufSize
SendBufSize
The resolver for JournalSockoptionV1::SendBufSize
RecvLowat
The resolver for JournalSockoptionV1::RecvLowat
SendLowat
The resolver for JournalSockoptionV1::SendLowat
RecvTimeout
The resolver for JournalSockoptionV1::RecvTimeout
SendTimeout
The resolver for JournalSockoptionV1::SendTimeout
ConnectTimeout
The resolver for JournalSockoptionV1::ConnectTimeout
AcceptTimeout
The resolver for JournalSockoptionV1::AcceptTimeout
Ttl
The resolver for JournalSockoptionV1::Ttl
MulticastTtlV4
The resolver for JournalSockoptionV1::MulticastTtlV4
Type
The resolver for JournalSockoptionV1::Type
Proto
The resolver for JournalSockoptionV1::Proto
Auto Trait Implementations§
impl Freeze for JournalSockoptionV1Resolver
impl RefUnwindSafe for JournalSockoptionV1Resolver
impl Send for JournalSockoptionV1Resolver
impl Sync for JournalSockoptionV1Resolver
impl Unpin for JournalSockoptionV1Resolver
impl UnwindSafe for JournalSockoptionV1Resolver
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more