pub struct LegacyResult {
pub css: Vec<u8>,
pub map: Option<Vec<u8>>,
pub stats: LegacyResultStats,
}
Expand description
More information: Sass documentation
Fields§
§css: Vec<u8>
More information: Sass documentation
map: Option<Vec<u8>>
More information: Sass documentation
stats: LegacyResultStats
More information: Sass documentation
Implementations§
Source§impl LegacyResult
impl LegacyResult
Sourcepub fn new(entry: String, start: SystemTime, result: CompileResult) -> Self
pub fn new(entry: String, start: SystemTime, result: CompileResult) -> Self
Creates a new LegacyResult.
Trait Implementations§
Source§impl Clone for LegacyResult
impl Clone for LegacyResult
Source§fn clone(&self) -> LegacyResult
fn clone(&self) -> LegacyResult
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 LegacyResult
impl Debug for LegacyResult
Source§impl<'de> Deserialize<'de> for LegacyResult
impl<'de> Deserialize<'de> for LegacyResult
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 LegacyResult
impl RefUnwindSafe for LegacyResult
impl Send for LegacyResult
impl Sync for LegacyResult
impl Unpin for LegacyResult
impl UnwindSafe for LegacyResult
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