pub enum StaticFileProducerEvent {
Started {
targets: StaticFileTargets,
},
Finished {
targets: StaticFileTargets,
elapsed: Duration,
},
}
Expand description
An event emitted by the static file producer.
Variants§
Started
Emitted when static file producer started running.
Fields
§
targets: StaticFileTargets
Targets that will be moved to static files
Finished
Emitted when static file producer finished running.
Fields
§
targets: StaticFileTargets
Targets that were moved to static files
Trait Implementations§
Source§impl Clone for StaticFileProducerEvent
impl Clone for StaticFileProducerEvent
Source§fn clone(&self) -> StaticFileProducerEvent
fn clone(&self) -> StaticFileProducerEvent
Returns a copy 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 StaticFileProducerEvent
impl Debug for StaticFileProducerEvent
Source§impl PartialEq for StaticFileProducerEvent
impl PartialEq for StaticFileProducerEvent
impl Eq for StaticFileProducerEvent
impl StructuralPartialEq for StaticFileProducerEvent
Auto Trait Implementations§
impl Freeze for StaticFileProducerEvent
impl RefUnwindSafe for StaticFileProducerEvent
impl Send for StaticFileProducerEvent
impl Sync for StaticFileProducerEvent
impl Unpin for StaticFileProducerEvent
impl UnwindSafe for StaticFileProducerEvent
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.Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 88 bytes
Size for each variant:
Started
: 72 bytesFinished
: 88 bytes