pub struct LegacyResultStats {
pub entry: String,
pub start: SystemTime,
pub end: SystemTime,
pub duration: Duration,
pub included_files: Vec<String>,
}
Expand description
More information: Sass documentation
Fields§
§entry: String
The absolute path of [LegacyOptions.file], or “data” if [LegacyOptions.file] wasn’t set.
start: SystemTime
The number of milliseconds between 1 January 1970 at 00:00:00 UTC and the time at which Sass compilation began.
end: SystemTime
The number of milliseconds between 1 January 1970 at 00:00:00 UTC and the time at which Sass compilation ended.
duration: Duration
The number of milliseconds it took to compile the Sass file. This is always equal to start minus end.
included_files: Vec<String>
An array of the absolute paths of all Sass files loaded during compilation. If a stylesheet was loaded from a LegacyImporter that returned the stylesheet’s contents, the raw string of the @use or @import that loaded that stylesheet included in this array.
Trait Implementations§
Source§impl Clone for LegacyResultStats
impl Clone for LegacyResultStats
Source§fn clone(&self) -> LegacyResultStats
fn clone(&self) -> LegacyResultStats
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LegacyResultStats
impl Debug for LegacyResultStats
Source§impl<'de> Deserialize<'de> for LegacyResultStats
impl<'de> Deserialize<'de> for LegacyResultStats
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 LegacyResultStats
impl RefUnwindSafe for LegacyResultStats
impl Send for LegacyResultStats
impl Sync for LegacyResultStats
impl Unpin for LegacyResultStats
impl UnwindSafe for LegacyResultStats
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