pub struct DatabaseOperatingProfileReport {
pub required_journal_mode: String,
pub observed_journal_mode: Option<String>,
pub required_synchronous_mode: String,
pub observed_synchronous_mode: Option<String>,
pub required_busy_timeout_ms: u64,
pub observed_busy_timeout_ms: Option<u64>,
pub checkpoint_write_interval: usize,
pub checkpoint_state: Option<TelemetryCheckpointState>,
pub wal_autocheckpoint_pages: Option<usize>,
pub statistics_policy: PlannerStatisticsPolicy,
pub statistics_state: Option<PlannerStatisticsState>,
}Expand description
Required and observed database connection and maintenance policy.
Fields§
§required_journal_mode: StringJournal mode required for live project databases.
observed_journal_mode: Option<String>Journal mode observed on the reporting connection, when available.
required_synchronous_mode: StringSynchronous mode required for authored and derived state.
observed_synchronous_mode: Option<String>Synchronous mode observed on the reporting connection, when available.
required_busy_timeout_ms: u64Busy timeout required for ordinary connections in milliseconds.
observed_busy_timeout_ms: Option<u64>Busy timeout observed on the reporting connection in milliseconds.
checkpoint_write_interval: usizeWrites between ProjectAtlas passive-checkpoint attempts.
checkpoint_state: Option<TelemetryCheckpointState>Most recent passive-checkpoint state, when durable state is available.
wal_autocheckpoint_pages: Option<usize>Connection-local automatic checkpoint threshold, when available.
statistics_policy: PlannerStatisticsPolicyProjectAtlas planner-statistics maintenance policy.
statistics_state: Option<PlannerStatisticsState>Observed planner-statistics state, when available.
Trait Implementations§
Source§impl Clone for DatabaseOperatingProfileReport
impl Clone for DatabaseOperatingProfileReport
Source§fn clone(&self) -> DatabaseOperatingProfileReport
fn clone(&self) -> DatabaseOperatingProfileReport
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 PartialEq for DatabaseOperatingProfileReport
impl PartialEq for DatabaseOperatingProfileReport
Source§fn eq(&self, other: &DatabaseOperatingProfileReport) -> bool
fn eq(&self, other: &DatabaseOperatingProfileReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DatabaseOperatingProfileReport
impl StructuralPartialEq for DatabaseOperatingProfileReport
Auto Trait Implementations§
impl Freeze for DatabaseOperatingProfileReport
impl RefUnwindSafe for DatabaseOperatingProfileReport
impl Send for DatabaseOperatingProfileReport
impl Sync for DatabaseOperatingProfileReport
impl Unpin for DatabaseOperatingProfileReport
impl UnwindSafe for DatabaseOperatingProfileReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more