#[repr(u8)]pub enum ArchivedJournalSnapshotTriggerV1 {
Idle = 0,
Listen = 1,
Environ = 2,
Stdin = 3,
Timer = 4,
Sigint = 5,
Sigalrm = 6,
Sigtstp = 7,
Sigstop = 8,
NonDeterministicCall = 9,
Bootstrap = 10,
Transaction = 11,
}
Expand description
An archived JournalSnapshotTriggerV1
Variants§
Idle = 0
The archived counterpart of JournalSnapshotTriggerV1::Idle
Listen = 1
The archived counterpart of JournalSnapshotTriggerV1::Listen
Environ = 2
The archived counterpart of JournalSnapshotTriggerV1::Environ
Stdin = 3
The archived counterpart of JournalSnapshotTriggerV1::Stdin
Timer = 4
The archived counterpart of JournalSnapshotTriggerV1::Timer
Sigint = 5
The archived counterpart of JournalSnapshotTriggerV1::Sigint
Sigalrm = 6
The archived counterpart of JournalSnapshotTriggerV1::Sigalrm
Sigtstp = 7
The archived counterpart of JournalSnapshotTriggerV1::Sigtstp
Sigstop = 8
The archived counterpart of JournalSnapshotTriggerV1::Sigstop
NonDeterministicCall = 9
The archived counterpart of JournalSnapshotTriggerV1::NonDeterministicCall
Bootstrap = 10
The archived counterpart of JournalSnapshotTriggerV1::Bootstrap
Transaction = 11
The archived counterpart of JournalSnapshotTriggerV1::Transaction
Trait Implementations§
Source§impl<__C> CheckBytes<__C> for ArchivedJournalSnapshotTriggerV1
impl<__C> CheckBytes<__C> for ArchivedJournalSnapshotTriggerV1
Source§impl From<&ArchivedJournalSnapshotTriggerV1> for SnapshotTrigger
impl From<&ArchivedJournalSnapshotTriggerV1> for SnapshotTrigger
Source§fn from(val: &ArchivedJournalSnapshotTriggerV1) -> SnapshotTrigger
fn from(val: &ArchivedJournalSnapshotTriggerV1) -> SnapshotTrigger
impl Portable for ArchivedJournalSnapshotTriggerV1
Auto Trait Implementations§
impl Freeze for ArchivedJournalSnapshotTriggerV1
impl RefUnwindSafe for ArchivedJournalSnapshotTriggerV1
impl Send for ArchivedJournalSnapshotTriggerV1
impl Sync for ArchivedJournalSnapshotTriggerV1
impl Unpin for ArchivedJournalSnapshotTriggerV1
impl UnwindSafe for ArchivedJournalSnapshotTriggerV1
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