Struct sass_embedded::Exception
source · [−]pub struct Exception { /* private fields */ }
Expand description
An exception for this crate, thrown because a Sass compilation failed or io::Error
.
More information: Sass documentation
Implementations
sourceimpl Exception
impl Exception
sourcepub fn message(&self) -> &str
pub fn message(&self) -> &str
More information: Sass documentation
sourcepub fn sass_message(&self) -> Option<&str>
pub fn sass_message(&self) -> Option<&str>
More information: Sass documentation
sourcepub fn sass_stack(&self) -> Option<&str>
pub fn sass_stack(&self) -> Option<&str>
More information: Sass documentation
sourcepub fn span(&self) -> Option<&SourceSpan>
pub fn span(&self) -> Option<&SourceSpan>
More information: Sass documentation
Trait Implementations
sourceimpl Display for Exception
impl Display for Exception
sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result
fn fmt(&self, f: &mut Formatter<'_>) -> Result
More information: Sass documentation
sourceimpl Error for Exception
impl Error for Exception
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for Exception
impl Send for Exception
impl Sync for Exception
impl Unpin for Exception
impl !UnwindSafe for Exception
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more