pub struct FlowLiveUpdaterOptions {
pub live_mode: bool,
pub reexport_targets: bool,
pub full_reprocess: bool,
pub print_stats: bool,
}Fields§
§live_mode: boolIf true, the updater will keep refreshing the index. Otherwise, it will only apply changes from the source up to the current time.
reexport_targets: boolIf true, the updater will reexport the targets even if there’s no change.
full_reprocess: boolIf true, the updater will reprocess everything and invalidate existing caches.
print_stats: boolIf true, stats will be printed to the console.
Trait Implementations§
Source§impl Clone for FlowLiveUpdaterOptions
impl Clone for FlowLiveUpdaterOptions
Source§fn clone(&self) -> FlowLiveUpdaterOptions
fn clone(&self) -> FlowLiveUpdaterOptions
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 Debug for FlowLiveUpdaterOptions
impl Debug for FlowLiveUpdaterOptions
Source§impl Default for FlowLiveUpdaterOptions
impl Default for FlowLiveUpdaterOptions
Source§fn default() -> FlowLiveUpdaterOptions
fn default() -> FlowLiveUpdaterOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowLiveUpdaterOptions
impl<'de> Deserialize<'de> for FlowLiveUpdaterOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FlowLiveUpdaterOptions
impl RefUnwindSafe for FlowLiveUpdaterOptions
impl Send for FlowLiveUpdaterOptions
impl Sync for FlowLiveUpdaterOptions
impl Unpin for FlowLiveUpdaterOptions
impl UnwindSafe for FlowLiveUpdaterOptions
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,
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> ⓘ
Converts
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> ⓘ
Converts
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